body {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

h1 {
    display: inline-block;
    font-weight: 300;
    margin: 0 32px 0 0;
}

h2 {
    font-weight: 300;
}

.navbar {
    margin: 32px;
}

.list {
    display: inline-block;
}

.nav_list {
    display: inline-block;
}

.navbar a {
    text-decoration: none;
    color: black;
    margin: 0 8px;
}

.list ul {
    padding: 0;
}

.list a:hover {
    border-bottom: 1px solid black;
}

.order {
    width: 90%;
    margin: 50px auto;
    position: relative;
}

.order h2 {
    text-align: center;
    font-size: 50px;
}

.img, .img2, .img3, .img4, .img5, .img6 {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

.disc {
    font-size: 20px;
}

h3 {
    text-decoration-line: underline;
}

.support p {
    font-size: 20px;
    margin: 40px auto;
    width: 90%;
}

.contact {
    width: 90%;
    margin: 50px auto;
    display: block;
    position: relative;
}

.contact p {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact h3 {
    font-size: 20px;
    text-decoration: none;
}

.footer {
    background-color: #F2F4F6;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
}

.footer h1 {
    margin-top: 0;
    font-weight: 300;
}

.socials {
    margin: 30px auto;
    width: 200px;
    height: auto;
}

.icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 50%;
}

.icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

h5 {
    width: auto;
    margin-top: 20px;
}

hr {
    width: 100%;
    margin: 20px 0;
}

/* Media Queries for Responsive Design */

@media (max-width: 1200px) {
    .order h2 {
        font-size: 40px;
    }
    .support p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .navbar {
        margin: 16px;
    }
    .footer h1 {
        display: block;
        margin: 0 auto;
    }
    .socials {
        margin: 20px auto;
        width: 100%;
    }
    .contact {
        width: 100%;
    }
    .contact p, .contact h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        margin: 8px;
    }
    .footer {
        padding: 10px;
    }
    .footer h1 {
        display: block;
        margin: 0 auto;
    }
    .socials {
        margin: 10px auto;
        width: 100%;
    }
    .icon {
        margin-right: 5px;
    }
    .order h2 {
        font-size: 30px;
    }
    .disc, .support p, .contact p {
        font-size: 16px;
    }
    .contact h3 {
        font-size: 16px;
    }
}

