body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Hero section styling */
.hero {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes sure the image covers the section proportionally */
}

header {
    text-align: center;
    padding: 50px 20px;
    background-color: #64B5F6;
    color: white;
}

h1 {
    font-size: 3em;
}

p {
    font-size: 1.2em;
}

main {
    margin: 50px auto;
    width: 80%;
    text-align: center;
}

.join-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #61dafb;
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.join-button:hover {
    background-color: #21a1f1;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #282c34;
    color: white;
    position: static;
    width: 100%;
}
