body {
    margin: 0;
    background-color: #000000;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #00bfff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 300px;
}

h1 {
    margin: 0 0 22px 0;
    font-size: 56px;
    font-weight: bold;
    color: #00bfff;
}

p {
    margin: 0;
    font-size: 19px;
    line-height: 1.8;
    color: #00bfff;
}

.menu {
    margin-top: 28px;
}

.top-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bottom-button {
    margin-top: 12px;
}

.btn {
    display: inline-block;
    padding: 13px 24px;
    background-color: #19c2ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.btn:hover {
    background-color: #11aee6;
}

footer {
    margin-top: 55px;
    font-size: 14px;
    color: #7a7a7a;
}

@media (max-width: 900px) {
    .container {
        padding-top: 180px;
    }

    h1 {
        font-size: 40px;
    }

    p {
        font-size: 17px;
    }

    .top-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 290px;
        box-sizing: border-box;
    }
}