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

html,
body{

    height:100%;

    font-family:'Montserrat',sans-serif;

}

body{

    background:url(images/background.png) center center;
    background-size:cover;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    overflow:hidden;

}

.overlay{

    position:absolute;

    inset:0;

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

    backdrop-filter:blur(2px);

}

.content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

    width:min(900px,90%);

}

.logo{

    width:150px;

    margin-bottom:35px;

}

h2{

    font-size:1.3rem;

    font-weight:300;

    letter-spacing:3px;

    margin-bottom:10px;

}

h1{

    font-size:clamp(60px,10vw,120px);

    font-weight:800;

    line-height:1;

    color:#ffffff;

}

.line{

    width:180px;

    height:8px;

    background:#16A4F2;

    margin:20px auto 40px;

}

h3{

    font-size:2rem;

    margin-bottom:25px;

    font-weight:600;

}

p{

    max-width:650px;

    margin:0 auto 50px;

    line-height:1.8;

    font-size:1.1rem;

    color:#f2f2f2;

}

.contact{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

.contact a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.contact a:hover{

    color:#16A4F2;

}

footer{

    color:#ddd;

    font-size:.85rem;

}

@media(max-width:768px){

h1{

    font-size:64px;

}

h3{

    font-size:1.6rem;

}

p{

    font-size:1rem;

}

.logo{

    width:120px;

}

.contact{

    flex-direction:column;

    gap:12px;

}

.contact span{

    display:none;

}

}