body {
    margin: 0;
    min-height: 100vh;

    background-image: url("../img/fondprincipal.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Press Start 2P', cursive;
}

.credits-box {
    text-align: center;

    background: rgba(0, 0, 0, 0.75);

    padding: 40px;

    border: 4px solid #24160a;
    border-radius: 15px;

    color: #f4e4bc;
}

h1 {
    margin-bottom: 40px;
    font-size: 28px;
}

h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    margin-bottom: 40px;
}

.btn {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;

    padding: 18px 35px;

    color: #f4e4bc;
    background-color: #5a3e22;

    border: 4px solid #24160a;
    border-radius: 12px;

    box-shadow:
        4px 4px 0 #24160a,
        8px 8px 0 rgba(0, 0, 0, 0.3);

    cursor: pointer;

    transition: transform 0.1s;
}

.btn:hover {
    transform: scale(0.95);
}

.btn:active {
    transform: translate(4px, 4px);

    box-shadow:
        2px 2px 0 #24160a;
}

.credits-box {
    min-width: 500px;
}

p {
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.8;
}

h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 15px;
}


.discord-btn {
    display: inline-block;

    font-family: 'Press Start 2P', cursive;
    font-size: 12px;

    padding: 18px 25px;

    text-decoration: none;

    color: white;
    background-color: #5865F2;

    border: 4px solid #404EED;
    border-radius: 12px;

    box-shadow:
        4px 4px 0 #404EED,
        8px 8px 0 rgba(0, 0, 0, 0.3);

    transition: transform 0.1s;

    margin-bottom: 30px;
}

.discord-btn:hover {
    transform: scale(0.95);
}

.discord-btn:active {
    transform: translate(4px, 4px);

    box-shadow:
        2px 2px 0 #404EED;
}