*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family: 'Poppins', sans-serif;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;

    background: url('../images/bg.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(2px);
}

.container{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    justify-content:center;

    height:100vh;

    text-align:center;

    padding:20px;
}

.content{

    color:#fff;

    max-width:700px;

    animation:fadeUp 1.3s ease;
}

.category{

    display:inline-block;

    letter-spacing:3px;

    font-size:15px;

    text-transform:uppercase;

    padding:8px 20px;

    border:1px solid rgba(255,255,255,.3);

    border-radius:40px;

    margin-bottom:25px;

    background:rgba(255,255,255,.08);
}

h1{

    font-size:65px;

    font-weight:700;

    margin-bottom:20px;
}

.title{

    font-size:20px;

    color:#e9e9e9;

    line-height:1.8;
}

.divider{

    width:90px;

    height:3px;

    background:#fff;

    margin:40px auto;
}

.contact{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;
}

.contact a{

    color:#fff;

    text-decoration:none;

    font-size:17px;

    transition:.3s;
}

.contact a:hover{

    color:#d4d4d4;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

@media(max-width:768px){

    h1{

        font-size:42px;
    }

    .title{

        font-size:18px;
    }

    .contact{

        flex-direction:column;

        gap:18px;
    }
}