@font-face {
    font-family: 'CooperLakeGothic';
    src: url('/Fontes/Fonte.ttf') format('truetype');
}
@import url('color.css'); 

body {
    height: 100vh;
    touch-action: manipulation;
    overscroll-behavior: none;
    justify-content: center;
    text-align: center;
    padding-top: 20vh;
    overflow-x: hidden;
    margin: 0;
    color: var(--texto);
    background-color: var(--principal);
}

iframe {
    width: 100%;
    height: 30vh;
    border: none;
}

.button {
    user-select: none;
    padding: 2vw;
    width: 30vw;
    font-size: 2.5vw;
    color: #ffff;
    text-align: center;
    font-family: 'CooperLakeGothic', sans-serif;
    margin: 10px auto;
    justify-content: center;
    border: none;
    background-color: rgb(30, 90, 0);
    border-radius: 20px;
}
.button:hover {
    background-color: rgb(20, 60, 0);
}

.comentario {
    padding-right: 10px;
    width: 78.5vw;
    user-select: none;
    display: inline-block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 2.5vw;
    text-align: justify;
    border: none;
    background-color: var(--secundario);
    border-radius: 20px;
}
.comentario-menor  {
    padding: 10px;
    width: 60%;
    user-select: none;
    display: none;
    font-size: 2.5vw;
    text-align: center;
    justify-content: center;
    border: none;
    background-color: var(--principal);
    border-radius: 20px;
}

.title {
    font-size: 3.5vw;
    font-family: 'CooperLakeGothic', sans-serif;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        padding-top: 15vh;
    }
    .comentario {
        font-size: 4.5vw;
    }
    .comentario-menor {
        font-size: 4.5vw;
    }
    .title {
        font-size: 5vw;
    }
    
    .button {
        width: 50vw;
        font-size: 5vw;
        border-radius: 10px;
    }
}