body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-image: url('/media/jblock-main-background.jpg');
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.356);
    padding: 0 15px;
}


.discord-section {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    width: 100vw;
    align-items: center;
    align-content: flex-end;
    margin-top: 7%;
    text-align: center;
}



.top-title img {
    width: 50vw;
}

h1 {
    font-size: 45px;
    margin: 0 auto;
    color: #eb6423;
    text-shadow: 3px 3px #000;
    font-family: "Graffiti", sans-serif;
    padding-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin: 0 auto;
    color: #f5f5f5;
    text-shadow: 3px 3px 20px #0000003f;
    font-family: "Funnel Sans", serif;
  font-optical-sizing: auto;
    padding-bottom: 20px;
    font-weight: 700;
}

@font-face {
    font-family: 'Graffiti';
    src: url(/fonts/SecretoDemoRegular.ttf);
}

.button-section {
    display: flex;
    gap: 2%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4%;
}

p {
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #5164f665;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    letter-spacing: 3px;
    margin-top: 30px;
}

.discord-btn:hover {
    background-color: #eb6423;
}

.btn {
    background-color: #0e0901a8;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Permanent Marker", serif;
    font-weight: 400;
    letter-spacing: 3px;
}

.btn:hover {
    background-color: #eb6423;
}

@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .button-section {
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }
    .btn {
        margin: 10px 0;
    }
    h1 {
        font-size: 1.6em;
    }
    h2{
        font-size: 22px;
        padding: 0 20px;
    }
    p {
        font-size: 11px;
        margin: 20px 0;
    }
    .top-title img {
        width: 90vw;
    }
}