body{
    color: white;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    margin: 0;
    background-image: url('MYIMG/Game-Interface.jpg');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 35px;
    margin-top: 20px;
}
.LazyUI{
    font-family: "Arial", sans-serif;
    font-size: 32px;
    text-align: center;
    color: rgb(255, 255, 255);
}
.features:hover{
    background-color: rgba(24, 24, 24, 0.8);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.features{
    background-color: rgb(24, 24, 24);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px) brightness(2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.feat{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    position: static;
    padding: 10px 20px;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-left: 30px;
    margin-right: 20px;
    width: 100%;
    gap: 10px;
}

button{
    text-decoration: none;
    background-color: rgb(59, 59, 61, 0.81);
    color: white;
    font-size: 22px;
    padding: 10px 20px;
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
    border-radius: 5px;
    position: static;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: none;
    transition: background-color 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.1);
}
button:hover{
    background-color: rgba(59, 59, 61, 0.81);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border:none;
    outline: none;
    background-color: rgba(24, 24, 24, 0.8);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.features h4{
    font-size: 18px;
    margin: 0;
    color: white;
}



input{
    color: black;
    width: 90%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
    margin-bottom: 15px;
}



@media(max-width: 600px) {
    .features {
        width: 100%;
        padding: 20px;
    }
    .LazyUI {
        font-size: 24px;
    }
    button {
        width: 100%;
        font-size: 18px;
    }
    input {
        font-size: 14px;
    }
    
}
