@import url("theme.css");


body{
    background-color: #000000;
    color: white;
}

h1 {
    color:#E894FF;
    font-family: 'georgia', sans-serif;
    font-weight: 400;
    font-size: 36px;
    margin: 0px 15px 0px 15px;
    background-color: #121212;
    padding: 20px;
    text-align: center;
  }
  

p {
    font-family: 'verdana', sans-serif;
    font-size: 16px;
    margin: 15px;
    line-height: 1.4;
}

.content-section {
    overflow: hidden;
  
    /* Clear floats */
}

.left-image {
    float: left;
    margin-right: 20px;
    /* Adjust the spacing between the image and content */
    max-width: 100%;
    /* Ensure the image doesn't exceed its container */
    height: auto;
}

.content-wrapper {
    overflow: hidden;
    text-align: justify;
    background-color: #1F1B24;
    margin: 15px;
    margin-top: 0;
    border-radius: 2px;
    /* Clear floats */
}

.icon-contain {
    margin: 10px;
    width: 18%;
    margin-left: 20px;
    max-width: 120px;
}


.team-section {
    background-color: #1F1B24;
    padding: 40px 20px;
    text-align: center;
    margin:15px;
    margin-top: 0;
}


.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    width: 200px;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #121212;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    border: 1px solid #A852FF;
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.team-member h3 {
    margin-top: 10px;
    color: #ffffff;
    font-size: 20px;
}

.team-member p {
    margin-top: 5px;
    color: #aaaaaa;
    font-size: 16px;
}

footer {
    background-color: #222222;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
}

.contact-section {
    background-color: #121212;
    padding: 100px 0px 100px 0px;
    text-align: center;
}

.contact-contents {
    color: #121212;
    background: linear-gradient(to bottom, #A852FF, #FF73FF);
    padding: 50px 0px 50px 0px;
    text-align: center;
}


.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.telegram-link {
    color: #121212;
    cursor: pointer;
}

.telegram-link:hover {
    position: relative;
    top: 1px;
}

.contact-details li {
    text-align: left;
    font-size: 15px;
}

/* -------------------- Mobile styles--------------- */

@media (max-width: 768px) {

    .contact-title {
        font-size: 25px;;
    }

    h1 {
        font-size: 28px;
    }

    .team-members {
        gap: 0px;
    }
    .team-section {
        margin: 15px;
        margin-top: 0px;
        padding: 40px 0px;
    }
    .team-member {
        margin: 5px;
        width: 140px;
    }
    .team-member p {
        font-size: 12px;
        margin: 5px;
    }
    .team-member h3 {
        font-size: 18px;
    }

    footer p{
        font-size: 13px;
    }


}