* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

#web-site {
    width: 100%;
}

#head {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 1px solid #a98360;
    box-shadow: 0 2px 10px #a98360;
}

header {
    width: 90%;
    margin: 0px auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
}

.logo h1 {
    font-size: 40px;
    font-weight: bold;
    color: #e34989;
    font-family: 'Courier New', Courier, monospace;
}

.logo h1 span {
    color: #573c27;
}

header ul li {
    display: inline-block;
    margin: 0 10px;
}

header ul li a {
    display: inline-block;
    text-decoration: none;
    font-size: 23px;
    font-weight: bold;
    color: #a98360;
    letter-spacing: 2px;
    transition: .4s;
    cursor: pointer;
    position: relative;
}

header ul li a::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    height: 3px;
    width: 0;
    background-color: #a98360;
    transition: .3s;
}

header ul li a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 3px;
    width: 0;
    background-color: #a98360;
    transition: .3s;
}

header ul li a:hover {
    transform: scale(1.1);
    color: #573c27;
}

header ul li a:hover::after, header ul li a:hover::before {
    width: 100%;
    background-color: #573c27;
}

header button {
    padding: 7px 10px;
    font-size: 18px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    background-color: #fff;
    border: 2px solid #ffadc6;
    color: #ffadc6;
    border-radius: 10px;
    letter-spacing: 2px;
    transition: .4s;
    cursor: pointer;
}

header button:hover {
    background-color: #e34989;
    border-color: #e34989;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 10px #e34989;
}

#main {
    width: 80%;
    margin: 250px auto 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.article h1 {
    color: #573c27;
    font-size: 75px;
}

.article p{
    font-size: 18px;
    margin: 20px 0;
    color: #a98360;
}

.article button {
    padding: 7px;
    margin-right: 8px;
    background-color: #fff;
    border: #ffadc6;
    color: #ffadc6;
    border: 1px solid #ffadc6;
    border-radius: 10px;
    transition: .4s;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 18px;
}

.article button:hover {
    background-color: #ffadc6;
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 2px 10px #ffadc6;
}

#sign-up {
    border-color: #e34989;
    color: #e34989;
}

#sign-up:hover {
    background-color: #e34989;
    color: #fff;
    box-shadow: 0 2px 10px #e34989;
}

#container {
    width: 80%;
    margin: 100px auto 150px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.text-side h1 {
    font-size: 70px;
    color: #573c27;
}

.text-side h1 span {
    color: #a98360;
}

.text-side p {
    font-size: 18px;
    margin: 10px 0;
    color: #a98360;
}

.text-side button {
    padding: 7px;
    margin-right: 8px;
    background-color: #fff;
    border: #ffadc6;
    color: #ffadc6;
    border: 1px solid #ffadc6;
    border-radius: 10px;
    transition: .4s;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 18px;
}

.text-side button:hover {
    background-color: #ffadc6;
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 2px 10px #ffadc6;
}

#submit {
    color: #e34989;
    border-color: #e34989;
}

#submit:hover {
    background-color: #e34989;
    color: #fff;
    box-shadow: 0 2px 10px #e34989;
}

#footer {
    width: 100%;
    border-top: 1px solid #a98360;
    box-shadow: 0 -2px 10px #a98360;
}

.contact {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact h2 {
    color: #e34989;
    font-family: 'Courier New', Courier, monospace;
    font-size: 28px;
}

.contact h3 {
    color: #573c27;
    font-family: 'Courier New', Courier, monospace;
    font-size: 32px;
    letter-spacing: 2px;
}

#box-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background-color: #0000001f;
    align-items: center;
    z-index: 1000;
    display: none;
}

#box {
    position: relative;
    width: 400px;
    top: 45%;
    left: 40%;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000033;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #ff0000;
}

#close {
    padding: 7px 120px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    transition: .4s;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
}

#close:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    header {
        width: 95%;
        padding: 20px 0;
    }

    header ul li a {
        font-size: 20px;
    }

    .article h1 {
        font-size: 60px;
    }

    .text-side h1 {
        font-size: 55px;
    }

    #main, #container {
        width: 90%;
    }

    #main img, #container img {
        width: 45%;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    header ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    header button {
        font-size: 16px;
        padding: 6px 10px;
    }

    #main {
        flex-direction: column-reverse;
        text-align: center;
        margin-top: 200px;
    }

    #main img {
        width: 80%;
        margin-bottom: 20px;
    }

    .article h1 {
        font-size: 50px;
    }

    .article p {
        font-size: 16px;
    }

    #container {
        flex-direction: column;
        text-align: center;
        margin: 70px auto;
    }

    #container img {
        width: 80%;
        margin-bottom: 20px;
    }

    .text-side h1 {
        font-size: 50px;
    }

    .text-side p {
        font-size: 16px;
    }

    .contact {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact h3 {
        font-size: 24px;
    }

    #box {
        width: 80%;
        left: 10%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 30px;
    }

    header ul li a {
        font-size: 18px;
    }

    .article h1 {
        font-size: 40px;
    }

    .article button,
    .text-side button {
        font-size: 16px;
        padding: 6px 10px;
    }

    #main img, #container img {
        width: 100%;
    }

    .text-side h1 {
        font-size: 38px;
    }

    .contact h2 {
        font-size: 22px;
    }

    .contact h3 {
        font-size: 20px;
    }

    #close {
        width: 90%;
        padding: 8px 0;
    }
}