*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    margin-left: auto;
    margin-right: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
nav ul{
    display: flex;
    list-style-type: none;
    justify-content: center;
}
nav li{
    margin: 1rem;
}
nav a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}
nav a:hover{
    transition: 1s;
    color: rgb(214, 214, 214);
}
nav{
    background-color: black;
    width: 100%;
}
nav div{
    text-align: center;
    margin-bottom: -0.6rem;
}
#hero-text{
    text-align: center;
}
#hero-h1{
    font-size: 2.5rem;
    font-weight: 400;
    animation: fadeInAnimation ease-in-out 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#moving{
    opacity: 0;
    animation: fadeInAnimation2 ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
#moving h1, h2{
    font-size: 1.5rem;
    font-weight: 400;
}
@keyframes fadeInAnimation2 {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
#faders{
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
#faders img:nth-child(1){
    opacity: 0;
    animation: photos ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}
#faders img:nth-child(2){
    opacity: 0;
    animation: photos ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}
#faders img:nth-child(3){
    opacity: 0;
    animation: photos ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}
#faders img:nth-child(4){
    opacity: 0;
    animation: photos ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}
@keyframes photos {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
main{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
#locations{
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-top: 5rem;
}
#pricing-article{
    margin-top: 1rem;
}
#pricing-article h3{
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
}
#h3-not-moving{
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-top: 5rem;
}
article ul{
    width: 18rem;
    list-style-type: none;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
footer{
    height: auto;
    margin-top: auto;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
}
footer p{
    vertical-align: middle;
    font-size: 1.5rem;
    font-weight: 600;
}
footer ul{
    list-style-type: none;
    text-align: left;
    padding: 1rem;
    margin-left: 1rem;
}
footer img{
    width: 200px;
    height: 94px;
    margin-top: 0.6rem;
}
#info{
    margin-top: 0.5rem;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
table{
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 8px;
}
  
table tr:nth-child(even){
    background-color: #f2f2f2;
}
  
table tr:hover{
    background-color: #ddd;
}
  
table th{
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #000000;
    color: white;
}
#not-on-list{
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    margin: 1rem;
}
#not-on-list a{
    color: black;
}
#shop-h1{
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
}
#grid{
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    margin-left: auto;
    margin-right: auto;
}
#grid img{
    width: 90%;
}
#grid figure{
    text-align: center;
}
button{
    width: 70%;
    background-color: #000000;
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1rem;
}
#about{
    width: 60%;
    font-weight: 400;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
#about h1{
    text-align: center;
    margin: 1rem;
    font-weight: 400;
}
#response{
    text-align: center;
    margin: 1rem;
    font-weight: 400;
}
form{
    background-color: rgba(177, 177, 177, 0.8);
    border-radius: 10px;
    padding: 1rem;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
input, label, select{
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}
select{
    padding: 0.3rem;
    border-radius: 5px;
    border: 0px;
}
input{
    padding: 0.3rem;
    border-radius: 5px;
    border: 0px;
    margin-top: 0.2rem;
}
input[type="submit"]{
    background-color: white;
    border: 0px;
}
input[type="submit"]:hover{
    cursor: pointer;
}
textarea{
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    border: 0px;
    margin-top: 0.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#h1s{
    text-align: center;
    margin: 1rem;
    font-size: 1.5rem;
    font-weight: 400; 
}
aside{
    width: 20%;
    background-color: #ddd;
    border-radius: 10px;
    position: absolute;
    margin-left: 60%;
    padding: 1rem;
}
aside h2, p{
    text-align: center;
}
#aside-h2{
    margin: 0;
}
@media (max-width: 1200px){
    #grid{
        grid-template-columns: repeat(4, 1fr);
    }
    main{
        width: 80%;
    }
    aside{
        width: 40%;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
    form{
        width: 80%;
    }
}
@media (max-width: 800px){
    #faders img{
        width: 20%;
    }
    aside{
        width: 60%;
    }
    input, label, select, textarea{
        width: 70%;
    }
    input, select{
        padding: 0.6rem;
    }
}
@media (max-width: 700px){
    #grid{
        grid-template-columns: repeat(3, 1fr);
    }
    main{
        width: 90%;
    }
}
@media (max-width: 600px){
    #grid{
        grid-template-columns: repeat(2, 1fr);
    }
    main{
        width: 100%;
    }
    footer{
        flex-direction: column;
    }
    footer ul{
        text-align: center;
    }
    footer img{
        margin-left: auto;
        margin-right: auto;
    }
    nav ul{
        flex-direction: column;
        text-align: center;
    }
    nav li{
        margin: 0.5rem;
    }
    table{
        width: 70%;
    }
}
@media (max-width: 480px){
    #grid{
        grid-template-columns: repeat(1, 1fr);
    }
    main{
        width: 100%;
    }
    aside{
        width: 70%;
    }
    table{
        width: 90%;
    }
    input, label, select, textarea{
        width: 90%;
    }
}