body {
    margin: 0;
    font-family: 'Fira Sans', sans-serif;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 20px 40px;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.nav-links a:hover {
    text-decoration:underline;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-image: url('bg1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: center;
}

.text-container {
    margin-right: 20px;
}

.main-text {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.description {
    font-size: 24px;
    font-weight: 300;
    margin: 5px 0 0 0;
}

.logo-container {
    display: flex;
    align-items: center;
    padding-right: 20px;
    padding-top: 35px;
}

.logo {
    height: 100px;
    width: auto;
}

.discord-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    background-image: url('ds.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.discord-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.discord-content {
    max-width: 600px;
}

.discord-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.discord-description {
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 20px 0;
}

.discord-button {
    background-color: #7289da;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.discord-button:hover {
    background-color: #5b6eae;
}

.steps-section {
    background-image: url('bg2.webp');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps-overlay {
    display: flex;
    flex-direction: column; /* Change to column to stack steps vertically */
    justify-content: center;
    align-items: center;
    width: 100%; /* Set to full width for better alignment */
    gap: 20px; /* Add some spacing between steps */
}

.step {
    text-align: center;
    width: 100%; /* Make each step take full width */
}


.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-size: 36px;
    line-height: 80px;
    margin-bottom: 20px;
}

.circle:hover{
    background-color:white;
    color: black;
    size: 45px;
}


.circle-ip {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: black;
    color: white;
    font-size: 36px;
    line-height: 80px;
    margin-bottom: 20px;
}

.circle-ip:hover{
    background-color:white;
    color: black;
    size: 45px;
}

.step-text {
    font-size: 18px;
    color: white;
}

.join-text {
    text-align: center;
    margin-bottom: 20px;
    background-image: url("bg2.webp");
}

.join-text h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
}
