html,body{
    background: #EBEFFC;
    overflow: hidden;
    margin:0;
    padding:0;
    user-select: none;
    font-size: 18px
}

.cubano{
    font-family: "Cubano", sans-serif;
    font-size: 1.4em;
    font-weight: normal;
}

.display{
    display: block !important;
}
.txt-c{
    text-align: center;
}

.scroll {
    overflow-y: scroll;
    height: 60vh;
    padding: 20px 30px;
    box-sizing: border-box;
}

.scroll::-webkit-scrollbar {
    width: 8px;
    background-color: #EBEFFC;
}

.scroll::-webkit-scrollbar-track {
    background-color: #EBEFFC;
}

.scroll::-webkit-scrollbar-thumb {
    background-color: #070A61;
    border-radius: 4px;
}

a{
    text-decoration: none;
    color: #070A61;
    font-size: 1.2em;
    font-weight: bold;
}
a:hover{
    color: #3660E3;
    opacity: 1;
}

.overlay{
    background: #EBEFFC;
    opacity: .8;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2
}

#matrix{
    /* opacity: .2; */
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    border: 2px solid #EBEFFC;
}

.accelerated {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s ;
  }
  
.content{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    box-sizing: border-box;
    padding: 20px 15px;
    color: #070A61;
    font-size: 18px;
    font-family: "Sofia Pro";
}

.logo-container{
    width: 160px;
    height: 160px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: -40px;
    cursor: pointer;
}



.pulse{
    width: 100%;
    height: 100%;
    position: absolute;
    -moz-animation: pulse 4s infinite ease-in-out;
    -webkit-animation: pulse 4s infinite ease-in-out;
    animation: pulse 4s infinite ease-in-out;
}

.main .title{
    position: absolute;
    z-index: 10;
    color: #070A61;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-family: "Cubano";
    font-size: 3em;
    margin-top: -40px;
    cursor: pointer;
}

.logo-container .logo:hover {
    opacity: 1;
}
.logo-container .logo {
    top: 0;
    background: url("circles.svg");
    background-size: contain;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .2;
    -moz-animation: spin 24s infinite linear;
    -webkit-animation: spin 24s infinite linear;
    animation: spin 24s infinite linear;
}


.top .left a{
    font-weight: 900;
    font-family: "Sofia Pro", sans-serif;
}


.top, .footer{
    display: flex;
    height: 80px;
    position: relative;
}


.footer{
    line-height: 140px
}

.content .footer .left{
    flex: 50%
}
.content .footer .right{
    flex: 50%;
}

.main{
    display: flex;
    height: calc(100% - 160px);
}

.content .left,
.content .right{
    flex: 1
}
.content .right{
    text-align: right
}

/* .time{
} */


.tagline-home {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    margin-top: 75px;
    text-align: center;
    font-size: 0.78em;
    opacity: 0.55;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.lang-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.lang-nav a {
    font-size: 0.85em;
    font-weight: bold;
    opacity: 0.6;
}

.lang-nav a:hover,
.lang-nav a.active {
    opacity: 1;
}

.page-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0 0;
}

.page-nav a {
    font-size: 0.82em;
    font-weight: bold;
    opacity: 0.5;
}

.page-nav a:hover,
.page-nav a.active {
    opacity: 1;
}
h1{
    font-family: "Cubano", sans-serif;
    font-weight: normal;
    font-size: 3em;
    margin: 0;
}
h1 span{
    color: #3660E3;
}

.main{
    margin: 0 auto;
    width: 100%;
    max-width: 760px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.main .box{
    width: 100%
}

.container{
    display: none;
}

.tagline{
    opacity: .7;
    font-size: 1.1em;
}


/* About */

.message{
    margin-top: 20px;
    line-height: 1.5;
    font-size: 1.1em;
}

.message img{
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}


/* Animation */

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Keyframes for pulsing */
@-moz-keyframes pulse {
    0%, 100% {
        -moz-transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.2);
    }
}

@-webkit-keyframes pulse {
    0%, 100% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}