@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    background-color: black;
    color: white;
    background-image: url('/assets/img/scary-ass-minecraft-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'IBM Plex Mono';
}

h1 {
    font-size: 65px;
    text-align: center;
}

p {
    font-size: 35px;
    text-align: center;
}

button {
    background-color: black;
    border-radius: 5px;
    padding: 15px;
    border-style: solid;
    border-color: white;
    color: white;
    font-size: 25px;
    font-family: 'IBM Plex Mono';
    width: 15vw;
    text-align: center;
    margin-left: 42%;
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: scale(1.05);
    cursor: pointer;
}

@media screen and (max-width: 915px) {
    button {
        width: 30vw;
        margin-left: 34%;
    }
}

#panel-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.panel {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid white;
    width: 150px;
}

.panel h2 {
    font-size: 16px;
    margin-bottom: 5px;
}

.panel p {
    font-size: 12px;
    margin-bottom: 8px;
}

.panel img {
    width: 150px;
    height: 150px;
    margin-bottom: 8px;
}

.panel button {
    background-color: black;
    border-radius: 5px;
    padding: 8px;
    border-style: solid;
    border-color: white;
    color: white;
    font-size: 14px;
    font-family: 'IBM Plex Mono';
    width: 100%;
    transition: all 0.2s ease-in-out;
    margin: auto;
}

.panel button:disabled {
    cursor: not-allowed;
    background-color: rgba(82, 82, 82, 0.925);
}

.panel button:disabled:hover {
    cursor: not-allowed;
}

.panel button:hover {
    transform: scale(1.05);
    cursor: pointer;
}
