body {
    font-family: 'League Spartan', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    
    background: url(./assets/bg_img.jpg);
background-size: cover;
}

.container {
    background: #0000006b;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 265px;
    max-height: 90vh;
    overflow-y: auto;
}

.logo {
    max-width: 60%;
    margin-bottom: 0px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.links-section h2 {
font-size: 1.5rem;
  margin-bottom: 0px;
  font-weight: 300;
  color: #ffebc4;
}

.link-btn {
    display: block;
    background-color: #ffc047;
    color: #000;
    text-decoration: none;
    padding: 15px;
    margin: 10px auto;
    border-radius: 5px;
    font-weight: 700;
    max-width: 400px;
    transition: background-color 0.3s, color 0.3s;
}

.link-btn:hover {
    background-color: #ccc;
}

footer {
    margin-top: 40px;
}

.social {
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}


@media (min-width: 768px) {
    .container {
        width: 550px;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 680px;
    }
}
