@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Red Hat Display', sans-serif;
}

.sup, .inf{
    width: 100%;
    height: 40vh;
    background: #e6e6e6;
}

.sup img.logo{
    width: 10%;
    position: absolute;
    left: 3%;
    top: -1px;
}
.inf{
    background: linear-gradient(to bottom, #00215F, #013699);
    height: 60vh;
}
.container{
    width: 50%;
    padding: 15px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.container .title h1,
.container .title p{
    text-align: center;
    text-transform: uppercase;
    font-size: 4em;
    color: #00215F;
    font-weight: 900;
}

.container .title p{
    font-size: 1.5em;
    font-weight: 700;
}

.container .menu{
    display: flex;
    transform: translateY(2.5em);
}

.container .menu div{
    width: 20%;
    text-align: center;
}

.container .menu div a{
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 18px;
}
button {
    justify-content: center;
    left: 48%;
    position: relative;
    font-family: inherit;
    font-size: 20px;
    background: #00215F;
    color: #fff;
    fill: rgb(155, 153, 153);
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    font-weight: 1000;
 }
  
  button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
 }
  button img {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

button:hover {
    background: #00215F;
}
  
  
button:hover .img1 {
    transform: scale(1.25);
    transition: 0.5s linear;
  }
button:hover img {
    transform: translateX(1.2em) scale(1.1);
    fill: #fff;
}

button:hover span {
    text-decoration: none;
    opacity: 0;
    transition: 0.5s linear;
  }

  button:active {
    transform: scale(0.95);
  }
  button:hover {
    background-color: #00215F;
    color: #fff;
    cursor: pointer;
}

  
.button:hover span {
    padding-right: 25px;
  }

 .botonPlay{
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    top: 70%;
    font-size: small;
 
}

.menu :hover{
    height: 130px;
    width: 130px;
}

@media screen and (max-width: 1440px){
    .sup img.logo{
        width: 15%;
    }
}
@media screen and (max-width: 1024px){
    .container{
        width: 95%;
    }
    .container .menu div a img{
        width: 85px;
    }
    .container .menu div a{
        font-size: 16px;
    }
    .botonPlay{
        font-size: 8px;
        top: 76%;

    }

}

@media screen and (max-width: 820px){
    .sup img.logo{
        width: 25%;
    }
    .container{
        width: 95%;
        padding: 10px;
    }
    .container .title{
        margin-top: -100px;
    }
    .container .title h1, .container .title p{
        font-size: 4em;
    }
    .container .title p{
        font-size: 1.5em;
    }
    .botonPlay{
        font-size: 8px;
        top: 76%;
        left: 25%;
        position: absolute;
    }
    .boton{
        position: absolute;
        left: 25%;
    }

}
@media screen and (max-width: 425px){
    .sup img.logo{
        width: 25%;
    }
    .container{
        width: 100%;
    }
    .container .title h1, .container .title p{
        font-size: 3em;
    }
    .container .title{
        margin-top: 100px;
    }
    .container .title p{
        font-size: 1.2em;
    }
    .container .menu{
        display: block;
    }
    .container .menu div{
        margin: 5px 0;
        width: 50%;
        float: left;
    }
    .container .menu div:nth-child(4){
        margin: 5px 0 25px 0;
    }
    .container .menu div a img{
        width: 60px;
    }
    .container .menu div a{
        font-size: 14px;
    }


}