body {
    margin: 0;
    font-family: "Shantell Sans", serif;
}

.btn {
    background-color: #e0748e;
    color: #14090d;
    border: 0.3vw solid #2e1920;
    border-radius: 1vw;
    width: 10vw;
    position: absolute;
    top: 2vw;
    right: 2vw;
    font-size: 2vw;
    cursor: pointer;
    font-family: "Shantell Sans", serif;
    padding: 0.5vw 1vw;
}

#modalBackground {
    width: 100vw;
    height: 100vh;
    background-color: rgba(46, 25, 32, 0.8);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal {
    position: absolute;
    background-color: #e0748e;
    font-size: 1.5vw;
    max-width: 30vw;
    padding: 1vw 2vw;
    color: #14090d;
    border: 0.3vw solid #2e1920;
    border-radius: 1vw;
    text-align: center;
}

#closeModal {
    background-color: transparent;
    font-size: 1vw;
    color: #14090d;
    border: 0.1vw solid #2e1920;
    border-radius: 0.2vw;
    padding: 0.1vw 0.5vw;
    margin-top: 1vw;
    cursor: pointer;
}

#container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #e0748e;
    color: #14090d;
    border: 0.3vw solid #2e1920;
    padding: 1vw 2vw;
    border-radius: 1vw;
    font-family: "Shantell Sans", serif;
    width: 40%;
}

h1 {
    text-align: center;
    font-size: clamp(1.5rem, 2vw, 3rem);
}

h3 {
    font-size: clamp(1rem, 1.2vw, 2rem);
}

p {
    font-size: clamp(0.8rem, 1vw, 1.5rem);
}

@media (max-width: 600px) {
    #container {
        width: 80%;
    }
}

@media (min-width: 600px) {
    #container {
        width: 75%;
    }
}

@media (min-width: 768px) {
    #container {
        width: 60%;
    }
}

@media (min-width: 992px) {
    #container {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    #container {
        width: 45%;
    }
}