* {
    box-sizing: border-box;
    margin: 0;
}
header {
    width: 1440px;
    height: 100px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f5e1f3;
    transition: all 0.3s ease;
}
header a:hover {
    transform: scale(1.1);
}
header h1 {
    display: flex;
    margin-left: 50px;
    font-family: 'Sedgwick Ave Display', cursive;
    color: grey;
}
header nav:first-of-type a {
    text-decoration: none;
    font-size: 20px;

}
header nav:first-of-type {
    flex: 1;
    display: flex;
    justify-content: space-around;
    margin-right: 50px;
}
header a {
    color: grey;
    text-decoration: none;
}
footer nav {
    background-color: #f5e1f3;
    width: 1440px;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}
footer a {
    text-decoration: none;
    font-size: 30px;
    color: grey;
    transition: all 0.3s ease;
}
footer a:hover {
    transform: scale(1.4);
}
.contact-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.2);
  }
  
  .contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 2px 1px rgba(0,0,0,0.1);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
  }
  
  .form-group textarea {
    height: 120px;
    resize: none;
  }
  
  button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f5e1f3;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #f5e1f9;
  }
  main {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  @media only screen and (max-width: 480px) {
    footer {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header {
        width: 100%;
        padding: 10px;
        height: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    header h1 {
        margin: 10px 0;
    }
    header nav:first-of-type {
        flex: none;
        margin: 10px 0;
    }
    header nav:first-of-type a {
        display: block;
        margin: 5px 0;
    }
    }
    @media only screen and (max-width: 768px) {
        footer {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        header {
            width: 100%;
            padding: 10px;
            height: auto;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        header h1 {
            margin: 10px 0;
        }
        header nav:first-of-type {
            flex: none;
            margin: 10px 0;
        }
        header nav:first-of-type a {
            display: block;
            margin: 5px 0;
        }
         }