* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
span,p,h1,h2,h3,h4{
    color:white;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #222;
}

#page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#banner {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

#banner-img {
    width: 50%;
    object-fit:contain;
}


#menu {
    padding: 20px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ddd;
}

#logo {
    height: 40px;
}

.tg-icon{
    background-image: url(tg.png);
    width:32px;
    height:32px;
}

#main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

#event-details {
    margin-top:10%;
    text-align: justify !important;
}

#wrapper{
    padding:20px;
    margin-top:5%;
    border-color: white;
    border-radius: 5px;
    border-style: solid;
}

#cta-text {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Buttons */
#cta button,
#telegram button,
#twitter button {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
}

#cta button {
    background:linear-gradient(90deg, #ff0000, #ff6600);
    border-color: #f0f2f3;
    color: white;
}

#telegram {
    margin-top: 40px;
}
#twitter {
    margin-top: 40px;
}

#telegram button {
    background-color: #34aadc;
    border-color: #34aadc;
    color: white;
}

#twitter button {
    background-color: #34aadc;
    border-color: #465258;
    color: white;
    width:214.84px;
    height:46px;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.desktop-banner {
    display: block;
    
}
.mobile-banner {
    display: none;
}

@media (max-width: 768px) {
    .desktop-banner {
        display: none;
    }
    .mobile-banner {
        display: block;
    }

    #banner-img {
    width: 100%;
    object-fit:cover;
}
}