@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Mono&display=swap');

@keyframes slideInLeftHeader {
        0% {
          transform: translateX(-100%);
        }
        100% {
          transform: translateX(0);
        }
      }
  @keyframes displayTheQuote {
        0% {
          opacity: 0;
        }
        100% {
          opacity:1;
        }
      }
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background-color: white;
}

li, a, button{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
  text-decoration: none;
  background-color: black;
}
.logo{
  height: 50px;
  width:  50px;
  cursor: pointer;
  margin-right: auto;
  background-color: black;
  border-radius: 5px;
}

header{
  animation: 2s ease-out 0s 1 slideInLeftHeader;
  display: flex;
  justify-content: end;
  align-items: right;
  padding: 20px 5%;
  color: black;
  background-color: black;
  border-radius: 50px;
  margin-top: 10px;
}

.nav__links {
  list-style: none;
}

.nav__links li{
  display:inline-block;
  padding: 19px 20px;
}

.nav__links li a{
  transition: all 0.3s ease 0s;
}
.nav__links li a:hover{
  color: aquamarine;
}

button{
  padding: 9px 25px;
  background-color: rgba(0,136, 169,1);
  border: none;
  border-radius: 50px;
  cursor:pointer;
  transition: all 0.3s ease 0s;

}
button:hover{
  background-color: rgba(0,136, 169,0.8);
}
.heading{
  color:white;
  margin-right: auto;
  font-size: 40px;
  margin-top: auto;
  background-color: black;
}
.Where_Ideas_Become_Interfaces{
  font-family: "Libertinus Mono", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 5vw;
  width: 50vw;
  background-color: beige;
  margin: auto;
  animation: 4s ease-in 0s 1 displayTheQuote;
}
.Where_Ideas_Become_Interfaces_Background{
  height: 30vw;
  width: auto;
  background-color: beige;
  text-align: center;
  border-radius: 50px;
}
.Start_now{
  border: none;
  background-color: rgb(100, 149, 237);
  margin: auto;
  transition: all 0.3 s ease-in;
  cursor: pointer;

}
.Start_now:hover{
  opacity: 0.7;
}
.CT_Development_Einführung{
  
  height: 30vw;
  width: auto;
  background-color:lightgray;
  align-items: center;
  text-align: center ;
  display: flex;
  justify-content: left;
  border-radius: 50px;
  
  
  
}
.CT_Development_Einführung h1{
  font-size: 2vw;
  background-color: lightgray;
  width: 45vw;
 
  
  
  
}
.Center_Line{
  background-color: black;
  height: 10vw;
  width: 0.5vw;
}
.CT_Development_Einführung_Text{
  width: 45vw;
  font-size: 2vw;
  margin: 5vw;
  background-color: lightgray;
}
.footer {
  background-color: #000;
  padding: 20px 5%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 50px;
  border-top: 3px solid #0088a9;
  animation: fadeInUp 1s ease-in-out;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: black;
  background-color: black;
}

.footer a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #1de9b6;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
    border-radius: 0;
  }

  .heading {
    font-size: 24px;
    margin: 10px 0;
  }

  .nav__links li {
    display: block;
    padding: 10px 0;
  }

  .nav__links {
    padding: 0;
  }

  button {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 10px;
  }

  .Where_Ideas_Become_Interfaces {
    font-size: 8vw;
    width: 90vw;
    margin: 5vw auto;
  }

  .Where_Ideas_Become_Interfaces_Background {
    height: auto;
    padding: 20px;
    width: 100%;
    border-radius: 0;
  }

  .CT_Development_Einführung {
    flex-direction: column;
    height: auto;
    padding: 20px;
    border-radius: 0;
  }

  .CT_Development_Einführung h1,
  .CT_Development_Einführung_Text {
    width: 90vw;
    font-size: 4.5vw;
    text-align: center;
    margin: 10px 0;
  }

  .Center_Line {
    display: none;
  }
}
