body, html {
    margin: 0;
    padding: 0;
    background-image: url('bg.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-attachment: fixed;
    height: 100vh;
    overflow: auto;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #060709 ;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    width: 390px;
}

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.logo {
    width: 200px;
    height: auto;
}

.buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
    width: 90%;
}


.btn {
    text-align: center;
    padding: 10px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 16px;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 0 50px #fff,0 0 1px #fff;
    transition: 0.3s;
}
.dis{ 
    opacity: 0.6;
    cursor: not-allowed;
    color: #1f1e1e;
 }

.btn:hover {
    background: #ffffff8a;
}
