/* General Styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: black;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    position: relative;
    overflow: auto;
}

/* Social Media Buttons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.social-button {
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}
.social-button:hover {
    color: #f39c12;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}
.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0 0;
    background-color: #000; /* Change as needed */
}

.banner-container img {
    max-width: 50%; /* Adjust size */
    height: auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* Adjust this value for even spacing */
}

p {
    margin: 0; /* Remove default paragraph margins */
}

iframe {
    margin-top: 20px; /* Ensure consistent spacing */
}