body {
    font-family: 'Edu SA Beginner', 'Book Antiqua', serif;
    line-height: 1.5em;
    color: darkgray;
    font-size: 20px;
    padding: 0; 
    margin: 0;
    background-image: url("./Resources/background.png");
    background-attachment: fixed;
}

.container {
    display: flex;
    flex-direction: column;
}

/* Header section */

.header {
    background-color: black;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3%;
    margin-bottom: 3%;
    margin-right: 5%;
    margin-left: 5%;
}

.header-top-logo img {
    width: 50%;
}

.header-top-nav a {
    font-family: 'Book Antiqua', serif;
    color: darkgray;
    font-size: 17px;
    text-decoration: none;
    margin: 10px;
    letter-spacing: 0.02em;
}

.header-bottom {
    display: flex;
    margin-top: 5%;
    margin-bottom: 3%;
    margin-right: 8%;
    margin-left: 8%;
    align-items: center;
}

.header-bottom-description {
    display: flex;
    flex-direction: column;
}

.header-bottom-description button {
    font-size: 15px;
    padding: 9px 10px 8px 10px; 
    letter-spacing: 0.03em;
    border-radius: 8px;
    border: none;
    background-color: darkred;
    color: white;
    font-weight: bold;
}

.header-bottom-description button:hover {
    transform: scale(1.1);
    transition: all ease;
    cursor: pointer;
}

h1 {
    font-family: 'Book Antiqua', serif;
    letter-spacing: 0.05em;
    color: white;
    font-size: 44px;
}

.header-bottom-img {
    margin: 50px;
}

.header-bottom-img img {
    border: 4px solid darkred;
    border-radius: 5px;
}



/* Info section */

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-family: 'Book Antiqua', serif;
    letter-spacing: 0.07em;
    margin-top: 75px;
    margin-bottom: 75px;
    color: white;
}

.info-content {
    display: flex;
    margin: 0% 7% 5% 7%;
    justify-content: space-around;
}

.info-content-1 img, 
.info-content-2 img, 
.info-content-3 img, 
.info-content-4 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30vh;
}

.title {
    font-family: 'Book Antiqua', serif;
    font-weight: bold;
    line-height: 0.5em;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 0px;
    color: white;
    font-size: 22px;
    padding-top: 10px;
}

.description {
    text-align: center;
    font-size: 20px;
    padding-left: 25px;
    padding-right: 25px;
    color: lightgray;
}



/* Quote section */

.quote {
    background-color: black;
    opacity: 0.6;
    display: flex;
}

.quote-text {
    margin: 5% 20%;
}

.quote-text h3 {
    font-family: 'Book Antiqua', serif;
    line-height: 2em;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: white;
}

.quote-text p {
    text-align: right;
    color: lightgray;
}



/* Signup section */

.signup-box {
    background-color: darkred;
    margin: 5% 10%;
    border-radius: 6px;
    display: flex;
    padding: 10px 150px;
    align-items: center;
    justify-content: space-between;
}

.signup-box h3 {
    color: white;
    font-size: 30px;
    letter-spacing: 0.02em;
    line-height: 0px;
}

.signup-box p {
    color: lightgray;
    margin-right: 25%;
}

.signup-box-button button {
    padding: 6px 8px;
    font-size: 15px;
    border-radius: 8px;
    background-color: black;
    color: lightgray;
    letter-spacing: 0.03em;
    font-weight: bold;
}

.signup-box-button button:hover {
    transform: scale(1.1);
    transition: all ease;
    cursor: pointer;
}



/* Footer section */

.footer {
    background-color: black;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-box-text h3 {
    font-family: 'Book Antiqua', serif;
    letter-spacing: 0.05em;
}




