html, body {
    margin: 0;
    padding: 0;
    background-color: #0f0f0f;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

a {
    text-decoration: none;
}

.header-div {
    background-color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0px 0px 8px 8px;
    padding: 0 20px;
    height: 65px;
}

.ico {
    height: 40px;
}

.fl {
    font-weight: bold;
    font-size: 25px;
}

.back {
    background-color: #242424;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.1s;
    color: white;
}

.back:hover {
    background-color: #313131;
}

.container {
    max-width: 800px;
    margin: 5% auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 60px;
    margin-bottom: 40px;
}

footer {
    margin-top: 40px;
    text-align: center;
}

hr {
    border: 1px solid #fff;
    width: 90%;
    margin-bottom: 10px;
}

h4 {
    font-size: 18px;
}

.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    color: white;
    transition: 0.2s;
    width: 300px;
    justify-content: center;
}

.btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.github { background-color: #24292e; }
.github:hover { background-color: #3a3f44; }

.discord { background-color: #5865F2; }
.discord:hover { background-color: #6b75e2; }

.twitter { background-color: #000000; }
.twitter:hover { background-color: #1b1b1b; }

.youtube { background-color: #ff0000; }
.youtube:hover { background-color: #ff5757; }

@media (max-width: 500px) {
    .btn {
        width: 90%;
        font-size: 16px;
        padding: 10px 16px;
    }

    h1 {
        font-size: 40px;
    }
}
