/* header */
.header {
    display: flex;
    flex-direction: column;
}

.header__navigation {
    display:flex;
    align-items: center;
    gap: 55px;

    height: 55px;
    margin: 0 clamp(21px, 13%, 377px);

    background-color: white;
}

.header__nav-item {
    
}

.header__nav-link {
    color: black;

    font-size: 21px;
    text-decoration: none;
}

.header__nav-link:hover {
    color: #4A8DF2;
    text-decoration: underline;
}

/* hero section */
.hero {
    display: flex;
    flex-direction: column;

    padding: 13% 0px;

    background-image: url("../images/background-hero-section.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__text-container {
    display:flex;
    flex-direction: column;
    gap: 21px;

    width: 610px;

    margin-left: clamp(21px, 13%, 377px);
}

.hero__header {
    color: white;
    text-shadow: 1px 1px 1px black;
    font-size: 55px;
}

.hero__caption {
    color: white;
    text-shadow: 1px 1px 1px black;
    font-size: 34px;
    font-weight: bold;
}

.hero__join-discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    width: 377px;
    height: 55px;
    color: white;
    text-shadow: 1px 1px 1px gray;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    border-radius: 13px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.hero__join-discord-button:hover {
    text-decoration: underline;
}