
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    height:100vh;
    overflow:hidden;
}

.hero{
    position:relative;
    width:100%;
    height:100vh;
    background:url('img/WEB.jpg') center center/cover no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.logo{
    font-size:1rem;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
    opacity:.8;
}

h1{
    font-size:clamp(2.5rem,8vw,6rem);
    font-weight:600;
    letter-spacing:6px;
    margin-bottom:15px;
}

p{
    max-width:600px;
    font-size:1rem;
    opacity:.9;
    margin-bottom:40px;
}

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:55px;
    height:55px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-decoration:none;
    backdrop-filter:blur(8px);
    transition:.3s ease;
}

.socials a:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.15);
    border-color:white;
}

.socials i{
    font-size:20px;
}

.fade{
    animation:fadeUp 1.2s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
