* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Burbank Small';
    font-weight: bold;
    src: url(https://universalpenguin.net/assets/fonts/burbank_small_bold.ttf);
}
@font-face {
    font-family: 'Burbank Small';
    font-weight: normal;
    src: url(https://universalpenguin.net/assets/fonts/burbank_small_medium.ttf);
}

body {
    font-family: 'Burbank Small', sans-serif;
    color: white;
    background-image: url("/assets/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-attachment: fixed;
}

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

.logo {
    width: 90vw;
    max-width: 700px;
    height: auto;
}

h1 {
    margin: 20px 0;
    font-size: 32px;
    text-align: center;
}

h3 {
    text-align: center;
    margin: 0 10px;
}

.buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 15px;
}

.buttons .button:last-child {
    grid-column: span 2;
    padding: 15px 80px;
    justify-self: center;
    background: linear-gradient(to bottom, #1490da, #004e89);
    color: white;
    border: 2px solid #004d97;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    background: linear-gradient(to bottom, #FFEC8B, #C9A22E);
    border: 2px solid #DAA520;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #6f4d15;
    text-align: center;
    transition: all 0.3s ease;
}

.button img {
    height: 30px;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.github {
    color: #1db8d3;
}

@media (max-width: 440px) {
    h1 {
        font-size: 22px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
    }
}