





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
 
  
  h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.2rem;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(25, 24, 24);
    color: white;
  }
  
  .logo {
    display: flex;
    align-items: center; 
    margin-left: 30px
  }

  .logo img{
    width:100px;
  }

  #wordlogo{
   margin-left: 30px;
   color: white;
  }


  nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap:10px;
    margin-top: 75px;
    margin-right: 30px;
  
  
    }
  
  
    .navbar{
      border: none;
      color: white;
      padding:1rem;
      font-family: 'Roboto', sans-serif;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      cursor: pointer;
      font-size: 1.1rem;
    }
  
  .navbar:hover{
    opacity: 65%;
  }

  #squish{
    display: none;
  }

 

  #info-black{
    color: black;
    margin-bottom: 15px;
  }

  .info_form{
    max-width: 300px;
    margin: 0 auto;
  }

  .form-container {
    background-color: #fff;
    padding: 15px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 15px;
    color: black;
  }

  .form-group input{
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  /* input[type="text"],
  input[type="email"],
  select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
  } */

  #paymentMethod{
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }


  .form-description
  select{
    min-width: 300px;
    max-width: 500px;
    padding: 8px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin: 0 auto;
  }

  form{
    margin-inline:auto;
  }



  
  button {
    padding: 15px 45px;
    font-size: 20px;
    border: none;
    border-radius: 4px;
    background-color: red;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    border: 1px solid black;
  }

  
  
  label,select
   {
    display: block;
    margin-bottom: 10px;
  }
  
  

  .promo-section {
    text-align: center;
    padding-bottom: 2em;
    background-color: white;


    padding-inline: 25px;
  }
  
  

.promo-content {
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}



  
  .list{
    text-align: left;
    line-height: 50px;
    font-size: 1.3rem;
    list-style: square;
    padding-left: 2.5em;
    padding-top: 2em;
  }
  
  b{
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
  }
  
  .form-section {
    text-align: center;
    background-color:whitesmoke;
    color: white;
    display: flex;
    font-size: 20px;
    width:100%;
  }

  
  
  .form-description {
    color: black;
    margin: 20px auto;
    line-height: 45px;
    accent-color: red;
  }

  select{
    outline-color: red;
  }

  select:focus{
    border: red 1px solid ;
  }

  /* option:active{
background-color: red;
  } */

  select>option:focus{
    background-color: red;
  }
  


    input:focus, textarea:focus{
      outline: red;
      border: red 1px solid;
    }


  textarea{
    padding: 25px 45px;
  }
 
 
  footer {
    background-color:rgb(25, 24, 24);
    text-align: center;
    padding: 20px 0;
  }
  
  .contact-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-links li {
    margin: 0 10px;
  }
  
  .contact-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-links a:hover {
    color:red;
    cursor: pointer;
  }

  .fa {
    padding: 10px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 5px;
  }

  .fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-phone{
  background:green;
  color: white;
  
}

.fa-envelope{
  background: pink;
  color:white
}

.fa-map-marker{
  background: red;
  color: white;
}

.bigger{
  font-size: 30px;
}



@media screen and (max-width:1050px){

  header{
    position: fixed;
    z-index: 3;
    width:100vw;
  }

  #squish{
    display:inline-block;
    position: absolute;
    background-color: white;
    width:30px;
    border-radius: 3px;
    right:45px;
  }
  
  #squish:hover{
    opacity: 75%;
  }
  
  .logo {
    margin-inline: auto;
  }
  
  #wordlogo{
  margin-inline: auto;
  }
  
  
  nav {
    padding: 1.5rem 1rem;
    z-index: 1;
  }
  
  .navbar{
    padding: 0;
    background-color:transparent;
  }
  
  nav ul {
    position: absolute;
    background-color:black;
    flex-direction: column;
    top: 5px;
    left: 60%;
    width: 40%;
    text-align: center;
   /* transform: translateX(160%); X makes it come from the sides the y top to bottom*/
    transform: translateY(30%);
  }
  
   nav ul li {
    margin: 5px;
  
    border-bottom: solid 1px white;
  }

  .promo-section{
    padding-top:130px;
  }
  

  
  }







@media screen and (max-width:975px){
  
  .list{
    padding-left:25px;

  }

  .form-section {
    display: inline-block;
  }
}

@media screen and (max-width:615px){


  .list{
    padding-left: 15px ;
    line-height: 40px;
  }

  #info-black{
    font-size: 10vw;
  }

}

@media screen and (max-width:530px){

  #wordlogo{
    display: none;
  }

  .logo{
    margin-inline:25px 0;
  }
}

@media screen and (max-width:415px){

  .promo-content h2{
    font-size: 10vw;
  }

  .promo-content p{
    font-size: 8vw;
  }

  /* .form-group input{
    width: 75%;
    
  } */

  .form-group label{
    font-size: 1rem;
  }



  .fa {
    padding: 5px;
    font-size: 15px;
    width: 25px;
  }
}

@media screen and (max-width:350px){
  .logo img{
    width:75px;
  }

  .promo-section{
    padding-top:100px;
  }
}


font-family: 'Roboto', sans-serif;







  

