* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', Arial, sans-serif;
    color: white;
}

html {
            scroll-behavior: smooth;
    }

.header {
    background-color: #b4121b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header img {
    width: 100px;
    height: auto;
}

.header .right {
    display: flex;
    gap: 10px;
    list-style: none;
}

.header .right li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}


.Hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(Images/members.webp) center/cover no-repeat;
    overflow: hidden;
    padding: 20px;
}

.Hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); 
    z-index: 0;
}

.Hero-Container {
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 600px;
    z-index: 1;
}

.Hero .title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
}

.Hero .text {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #ffffff;
}

.Hero .sign-up-button {
    background-color: #b4121b;
    color: #f9faf8;
    border: none;
    padding: 10px 25px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.Hero .sign-up-button:hover {
    background-color: #8a0e17;
}


.Information-title {
    color: black;
    font-size: 50px;
    font-weight: 900;
    text-align: center;
    margin: 30px;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
    margin: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    color: #000;
}

.images-info {
    text-align: center;
}

.images-info img {
    width: 250px;
    height: 250px;
    border: 5px solid #b4121b;
}


.quote {
    background: #e5e7eb;
    color: #000;
    padding: 50px 20px;
    margin: 25px 0;
    text-align: center;
}

.Sentence {
    font-size: 28px;
    font-style: italic;
    color: #7c4b4a;
    margin-bottom: 20px;
}

.Author {
    font-weight: 900;
}

.Author a {
    font-weight: 900;
}


.Sign-up-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #b4121b;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
    max-width: 900px;
    gap: 20px;
    color: #e5e7eb;
}

.Sign-up-box .box-header {
    font-size: 20px;
    font-weight: 900;
}

.Sign-up-box .box-text {
    font-size: 14px;
}

.Sign-up-box button {
    background: #f9faf8;
    color: #b4121b;
    padding: 10px 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.Bottom {
    background-color: #000;
    text-align: center;
    padding: 10px 20px;
    color: #e5e7eb;
}

.Bottom a {
    color: #e5e7eb;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 300;
}


@media (max-width: 768px) {
    .Hero {
        height: auto;
        padding: 40px 20px;
        flex-direction: column;
    }

    .Hero .title {
        font-size: 40px;
    }

    .Hero .text {
        font-size: 16px;
    }

    .Hero .sign-up-button {
        padding: 8px 20px;
    }

    .container {
        flex-direction: column;
        align-items: center;
        margin: 10px;
    }

    .images-info img {
        width: 80%;
        height: auto;
    }

    .Sign-up-box {
        flex-direction: column;
        text-align: center;
        margin: 20px;
        padding: 20px;
    }
}
