@font-face {
    font-family: TT Fors;
    src: url("../font/TT-Fors-Trial-Light.ttf");
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: TT Fors;
    background-image: linear-gradient(to right, rgb(0, 31, 207), rgb(0, 12, 72));
}
.header-text{
    padding-top: 10px;
    color: #fff;
    align-items: center;
    justify-content: center;
}
.header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 85px;
    padding: 5px 10%;
}

.header .logo{
    cursor: pointer;
    margin-right: auto;
}

.header .logo img{
    height: 50px;
    width: auto;
    transition: all 0.3s;
}

.header .logo img:hover{
    transform: scale(1.2);
}

.header .nav-links{
    list-style: none;
}

.header .nav-links li{
    display: inline-block;
    padding: 0 20px;    
}

.header .nav-links li:hover{
    transform: scale(1.1);
}

.header .nav-links a{
    font-size: 700;
    color: #eceff1;
    text-decoration: none;    
}

.header .nav-links li a:hover{
    color: #c0c0c0;
}

.header .btn button{
    margin-left: 20px;
    font-weight: 700;
    color: #1b3039;
    padding: 9px 25px;
    background: #eceff1;
    font-family: Jost Regular;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.en-vivo{
    display: flex;
    justify-content: center;
}
.en-vivo iframe{
    border-radius: 10px;
}