::before,
::after{
    margin: 0;
    padding: 0;
}

html { 
    width:100%; 
    height:100%; 
    margin:0;
}
body {
    width:100%; 
    height:100%; 
    margin:0; 
    padding:0; 
    box-sizing: border-box;
}

a{
    display:block;
    text-decoration:none;
}

.container{
    max-width: auto;
    max-height: 1000px;
    margin:0 auto;
    padding:0px;
}

header{
    position: fixed;
    display: flex;
    top: 0;
    z-index: 1400;
    width: 100%;
    background-color: rgba(59, 117, 202, 0.8);
    backdrop-filter: blur(2rem);
    border-bottom: 3px solid;
    border-color: #fff;
    opacity: 90%;
}

.nav-list{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 5px;
}
.nav-link{
    color: #fff;
    margin-right: 50px;
    transition: color .3s ease;
}
.nav-link:hover{
    color: #b3b3b3;
}
.nav-strings{
    position: absolute;
    right: 30px;
    top: 40px;
    font-size: 25px;
    font-family: arial black;
}

.nav-list-mobile{
    display: none;
}
.logo{
    background-image: url("/logo-color-removebg-preview.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    margin-top: -10px;
    margin-left: 0px;
}
.main-body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/qfzs9j1ebupbjkj2ul0v.webp");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px;
    box-sizing: border-box;
    height: 100%;
}

.content{
    margin-top: 100px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .5);
    padding: 30px;
    width: 700px;
    margin: auto;
    margin-top: 150px;
}
.text{
    justify-content: center;
    align-items: center;
    margin: auto;
}
.title{
    text-align: center;
    font-family: arial black;
}
.description{
    text-align:center;
    padding-left: 35px;
    padding-right: 35px;
    margin-bottom: 30px;
    font-family: arial;
    line-height: 1.25;
}
.button-row{
    display: flex;
    justify-content: center;
}
.button{
    background-color: #ff0000;
    margin-left: 50px;
    margin-right: 50px;
    color: #fff;
    border: 1px solid;
    height: 80px;
    width: 200px;
    font-family: arial black;
    font-size: 16px;
    transition: background-color .3s ease;
}
.button:hover{
    background-color: inherit;
    cursor: pointer;
}