@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #192734;
    color: #ffffff;
    margin: 0;
}

/* Header Styles */
.flex-container {
    display: flex;
    align-items: center;
    margin-left: 50px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.header-text {
    margin-left: 10px;
}

/* Block Styles */
.block {
    min-height: 500px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.block1 {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/group1.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-left: 40px;
    height: 575px;
}

.block2 {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}

.block3 {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 6.5)), url("img/group3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-left: 40px;
}

.block4 {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}

.block5 {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/group2.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 800px;
    margin-bottom: 10px;
}

/* Typography Styles */
h2 {
    font-size: 50px;
    font-weight: bold;
    font-family: Bungee;
    text-transform: uppercase;
}

.large-text {
    padding-top: 15px;
    padding-bottom: 15px;
}

.medium-text {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.normal-text {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Text Alignment Styles */
.text-left-450 {
    width: 450px;
    line-height: 1.6;
}

.text-left-250 {
    width: 250px;
}

.text-center {
    text-align: center;
    width: 600px;
    margin: 0 auto;
}

.text-center-700 {
    text-align: center;
    width: 800px;
    margin: 10px auto;
}

/* Slack Form Styles */
.slack-form {
    margin: 0 auto;
    width: 600px;
    text-align: center;
    padding-top: 14px;
    height: 400px;
}

.slack-form input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 10px;
}

.slack-submit {
    margin-top: 10px;
    color: white;
    background-color: blue;
}

.slack-message {
    margin-top: 10px;
    color: red;
    padding-bottom: 20px;
}

/* Footer Styles */
footer {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Join Now Button Styles */
.join-now {
    background-color: blue;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    display: inline-block;
    font-size: 25px;
    margin-bottom: 20px;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
    /* Mobile Styles */
    .text-center,
    .text-center-700,
    .slack-form {
        width: 95%;
    }

    .text-left-450 {
        width: 95%;
    }

    .text-left-250 {
        width: 95%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Tablet Styles */
    .text-center-700 {
        width: 80%;
    }
}

@media only screen and (min-width: 1025px) {
    /* Large Screen Styles */
    .text-center-700 {
        width: 90%;
    }
}

footer {
    padding: 10px 0;
    margin-top: 10px; /* Add a top margin */
}

