* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*background: #EFEFEF;*/
    /*color: #363639;*/
    /*font-family: 'Work Sans', sans-serif;*/
}



/* ? ----- PORTADA ----- */
.portada {
    /*width: 100%;*/
    min-height: 40vh;
    /*position: fixed;*/
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .5s ease-out all;
}

.portada.oculta {
    transform: translateY(-10%);
}

.portada .header {
    margin-bottom: 100px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.portada .header .logotipo {
    font-size: 50px;
    font-size: 900;
    margin-bottom: 20px;
}

.portada .header .mensaje {
    font-size: 30px;
    font-weight: 600;
}

/* ? ----- Cuenta Regresiva ----- */
#cuenta {
    display: flex;
    justify-content: center;
}

.simply-section {
    cursor: pointer;
    width: 150px;
    height: 150px;
    border: double 1em transparent;
    border-radius: 30px;
    margin: 0 15px;
    border: 15px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(to right, #b2c8ed, #dedede);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simply-amount {
    display: block;
    font-size: 55px;
    font-weight: 700;
}

.simply-word {
    font-weight: 300;
    font-size: 20px;
}

.imgpr{
    width: 100%;
}

.logo {
    width: 50%; 
    padding: 5%;
}

@media screen and (max-width: 600px) { 
    .imgpr{
        width: 100%;
    }

    .logo {
        width: 100%; 
        padding: 2%;
        text-align: center;
    }

    .simply-section {
        background: #000;
        color: #fff;
        width: 60px;
        height: 60px;
        margin: 0 5px;
        border-radius: 5px;
        border: 5px solid transparent;
        -moz-border-image: -moz-linear-gradient(top, #b2c8ed 0%, #dedede 100%);
        -webkit-border-image: -webkit-linear-gradient(top, #b2c8ed 0%, #dedede 100%);
        border-image: linear-gradient(to bottom, #dedede 0%, #b2c8ed 100%);
        border-image-slice: 1;
    }

    .simply-amount {
        font-size: 20px;
        font-weight: 500;
    }

    .simply-word {
        font-weight: 200;
        font-size: 10px;
    }

    .portada {
        min-height: 15vh;
    }
}