.resultados {
    position: absolute;
    left: 25%;
    width: 50vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.btn {
    background-color: #fdbb2d;
    font-size: 30px;
    border: none;
    width: 300px;
    height: 50px;
    padding: 5px;
    margin: 10px;
    border-radius: 20px;
    transition: background-color 1s;
}

.btn:hover {
    cursor: pointer;
    background: #ca6710;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.ganador {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pais-ganador {
    font-size: 50px;
}

.cup-img {
    width: 40%;
}

.hidden {
    display: none;
}

@media screen and (max-width:1000px) {
    .resultados-btns {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .pais-ganador {
        font-size: 1.5em;
    }

    .cup-img {
        width: 30%;
    }

    .btn {
        font-size: 1.2em;
        width: 200px;
    }
}

@media screen and (max-width:500px) {
    .cup-img {
        width: 40%;
    }
    .resultados h3, h4 {
        font-size: .8em;
    }
}