*{
    font-family: "ABeeZee", sans-serif;
    margin:0;
    padding:0;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4,9,39,0.7)),url(images/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

body{
    overflow: hidden;
}

nav{
    display:flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 100px;

}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative
}

.nav-links ul li a{
    color:white;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background:#24e07d;
    display: block;
    margin:auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color:white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color:white;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
}

.hero-btn:hover{
    border: 1px solid #24e07d;
    background-color: #24e07d;
}

nav .fa{
    display: none;
}

.qr-generator {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6px;
}

input[type="text"], button {
    margin-bottom: 10px;
    padding: 5px;
}

.overflow-hidden {
    overflow: hidden;
}

#title{
    font-size: 32pt;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #24e07d;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    nav .fa-solid{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22pt;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    #title{
        font-size: 24pt;
    }
}