:root {
    --text-color: rgb(252, 216, 163);
    --text-color-selected: rgb(143, 111, 62);
}
body {
    height: 100vh;
    width: 100vw;
    margin: 0px;
    padding: 0px;
    background: center/cover  url('../assets/FON.jpg');
}
.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.inner {
    font-size: 3rem;
    color: var(--text-color);
    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}
.bottom {
    margin-top: 4%;
}
button#tel {
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    transition: color 1s;
}
button#tel:hover {
    color: var(--text-color-selected);
}
#pop-up-message {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    height: max-content;
    width: max-content;
    padding: 0 20px;

    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    color: var(--text-color-selected);
    
    display: block;
    
    background-color: var(--text-color);
    border: 2px solid var(--text-color-selected);
    border-radius: 5px;

    opacity: 0;
    transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear;
    -moz-transition: opacity 1s linear;
    -o-transition: opacity 1s linear;
}
@media screen and (max-width: 800px) {
    .inner {
        font-size: 2.7rem;
    }
    #pop-up-message {
        font-size: 2.3rem;
    }
}
@media screen and (max-width: 700px) {
    .inner {
        font-size: 2.4rem;
    }
    #pop-up-message {
        font-size: 2rem;
    }
}
@media screen and (max-width: 500px) {
    .inner {
        font-size: 2rem;
    }
    #pop-up-message {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 450px) {
    .inner {
        font-size: 1.8rem;
    }
    #pop-up-message {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 400px) {
    .inner {
        font-size: 1.6rem;
    }
    #pop-up-message {
        font-size: 1.2rem;
    }
}