body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #000000;
}

.wrap{
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 0;
    max-height: 100vh;
    overflow: hidden;
}

.content{
    position: absolute; 
    top:50%; 
    left:50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
    max-width: 90%;
    width: 100%;
}

.bg-image{
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
    object-fit: cover;
}

.content--url{
    display:flex; 
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
    margin: 30px auto auto;
}

.logo-img{
    height:auto; 
    width:auto; 
    margin:auto;
}

.mail-img{
    width: 100%;
    height: 100%;
    max-height: 50px;
}

@media (min-width: 992px) {

    a:hover .mail-img{
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .logo-img{
        max-width:95%;
    }

    .content--url{
        flex-direction: column;
    }
}