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

body {
    background: #efefef;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.main {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    min-height: 100vh;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
}

.logo {
    align-items: center;
    display: flex;
    font-size: xx-large;
    height: 80px;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s ease all;
}

.logo h1 b {
    color: #46a2fd;
}

.main .header {
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.main .header .message {
    font-size: 20px;
    font-weight: 600;
}

.count {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.count .block {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    transition: 0.5s linear all;
}

.count .block div {
    align-items: center;
    background: #fff;
    border-radius: 5px;
    display: flex;
    font-size: 40px;
    font-weight: bold;
    height: 100px;
    justify-content: center;
    margin-bottom: 10px;
    transition: 0.3s ease all;
    width: 100px;
}

.count .block div:hover {
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease all;
}

.count .block p {
    color: #797979;
    font-size: 11px;
    font-weight: bold;
}

.social-media .btn-social-media {
    background: #46a2fd;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    margin: 0 20px;
    min-width: 50px;
    padding: 10px 0;
    transition: 0.3s ease all;
}

.social-media .btn-social-media:hover {
    background: #3b8ada;
    box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.15);
}

.starting {
    margin: 10px 0;
}

.starting,
input {
    color: #3b8ada;
    font-weight: 500;
}

input {
    border-radius: 5px;
    border: 1px solid #3b8ada;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    height: calc(1.5em + 0.75rem + 2px);
    margin: 10px 0;
    padding: 0.375rem 0.75rem;
    transition: 0.5s ease all;
}

.finalized{
    color: #3b8ada;
    font-size: xx-large;
    font-weight: lighter;
}

/* Responsive Desing - Adaptable a Dispositivos Móviles */

@media screen and (max-width: 493px) {
    .main {
        min-height: auto;
    }

    .logo {
        font-size: larger;
        height: 70px;
        margin-bottom: 2px;
    }

    .main .header {
        margin-bottom: 0;
    }

    .main .header .message {
        font-size: medium;
        font-weight: 600;
    }
    .count {
        display: flow-root;
        margin-bottom: 20px;
    }

    .count .block {
        margin: 15px 0;
    }

    .count .block div {
        font-size: 30px;
        height: 80px;
        margin-bottom: 2px;
        width: 80px;
    }

    .social-media .btn-social-media {
        font-size: 20px;
        margin: 0 20px;
        min-width: 40px;
        padding: 5px 0;
    }
}

@media screen and (min-height: 630px) {
    .main {
        min-height: 100vh;
    }
}
