body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('../img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
}
.centerCountdown {
    position: relative;
    margin-top: -210px;
}
h1 {
    font-size: 3em;
    margin-bottom: 10px;
}
#dynamic-text {
    font-size: 18px;
    color: #1963cb;
    display: inline-block;
    position: relative;
    top: -52px;
}
.cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background-color: #1963cb;
    margin-left: 2px;
    animation: blink 0.8s step-start infinite;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
#countdown {
    color: #0e203a;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
}
.logo {
    width: 300px;
}
.brand-logo{
    width: 120px;
}
.infoCount{
    margin-bottom: -30px;
}
.navBar{
    background-color: #1963cb;
    height: 54px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
}
.derechos{
    color: #eceff1;
    font-size: 12px;
    margin-top: 18px;
}
.derechos strong{
    font-weight: bold;
}
@media (min-width: 768px) {
    .infoCount{
        font-size: 58px;
    }
    .derechos{
        margin-right: 20px;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .infoCount{
        font-size: 38px;
    }
    .derechos{
        margin-left: 20px;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .infoCount{
        font-size: 30px;
    }
    .derechos{
        text-align: center;
    }
    .centerCountdown {
        margin-top: -110px;
    }
}