body,html{
    width: 100%;
}
.container{
    background-image: url(image/Fenix-bg.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
}
.container::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.568);
    position: absolute;
    top: 0;
    left: 0;
}
.info{
    z-index: 999;
    max-width: 950px;
    font-family: sans-serif;
    text-align: center;
    color: #fff;
    padding: 10px;
}
.info a{
    color: #fff;
    font-size: 20px;
}
h1{
    font-size: 70px;
    font-weight: bold;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0; 
}
h3{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
}
.logos{
    z-index: 999;
    margin-top: 50px;
    width: 100%;
    max-width: 600px;
}
@media (max-width: 768px){
    h1{
        font-size: 32px;
    }
    h3{
        font-size: 24px;
    }
}