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

body{

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

    height:100vh;

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

    background:url("bg.jpg") center center/cover no-repeat;

    position:relative;
}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,33,71,.78);

}

.container{

    position:relative;

    z-index:5;

    width:90%;
    max-width:700px;

    text-align:center;

    color:white;

    padding:45px;

    border-radius:25px;

    backdrop-filter:blur(10px);

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

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

}

.logo{

    width:170px;

    margin-bottom:30px;

}

.icon{

    font-size:70px;

    margin-bottom:20px;

}

h1{

    font-size:52px;

    font-weight:700;

    margin-bottom:20px;

}

p{

    font-size:20px;

    line-height:1.8;

    color:#efefef;

}

.small{

    margin-top:20px;

    color:#d6d6d6;

    font-size:17px;

}

.buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    text-decoration:none;

    color:white;

    padding:18px 35px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.blue{

    background:#0B5ED7;

}

.orange{

    background:#ff8400;

}

.btn:hover{

    transform:translateY(-5px);

}

footer{

    margin-top:45px;

    color:#cfcfcf;

    font-size:14px;

}

@media(max-width:768px){

.container{

padding:30px 20px;

}

.logo{

width:130px;

}

.icon{

font-size:55px;

}

h1{

font-size:40px;

}

p{

font-size:17px;

}

.btn{

width:100%;

}

}