/* HEADER SECTION */
#header .logo-links-container {
    justify-content: space-between;
    padding-block-start: 10px;
}

#header .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #F9FAF8;
}

#header .list-links {
    gap: 20px;
}

#header .button-image-container {
    gap: 30px;
    padding-block-start: 120px;
}

#header .text-button-container {
    gap: 10px;
    width: 500px;
}

#header .main-text {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

#header .nasa-photo {
    width: 600px;
    height: 300px;
    border-radius: 20px;
}

#header .photo-attribution {
    color: #E5E7EB;
    text-align: end;
    padding-block-end: 120px;
}

#header .attr-link {
    color: #3882f6;
    text-decoration: none;
}



/* INFO SECTION */
#info .random-text {
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
    text-align: center;
    padding-block: 60px;
}

#info .boxes-container {
    gap: 70px;
    padding-block-end: 120px;
    justify-content: center;
}

#info .box-and-text {
    width: 170px;
}

#info .box-border {
    width: 180px;
    height: 200px;
    border-radius: 20px;
    border: 5px solid #3882f6;
}

#info .box-text {
    text-align: center;
}



/* QUOTE SECTION */
#quote {
    padding-block: 120px;
}

#quote .inspirational-text {
    font-size: 36px;
    font-weight: 300;
    color: #1F2937;
    font-style: italic;
    width: 820px;
}

#quote .text-reference {
    text-align: end;
    color: #1F2937;
    font-weight: bold;
    font-size: 24px;
    padding-inline-end: 80px;
    width: 820px;
}



/* SIGNUP SECTION */
#signup {
    justify-content: center;
    padding-block: 120px;
}

#signup .cta-box {
    display: flex;
    border-radius: 10px;
    justify-content: center;
    gap: 150px;
    padding-block: 80px;
    background-color: #3882f6;
    align-items: flex-end;
}

#signup .main-text {
    color: #E5E7EB;
    font-size: 24px;
    font-weight: bold;
}

#signup button {
    height: 50px;
    border: 2px solid #E5E7EB;
}



/* FOOTER SECTION */
#footer {
    padding-block: 50px;
    text-align: center;
    font-size: 20px;
    color: #E5E7EB;
}



/* SELECTOR GROUPS */
* {
    font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

body,
#header,
#header .logo-links-container,
#header .logo-text,
#header .list-links,
#header .button-image-container,
#header .text-button-container,
#info .boxes-container,
#info .box-and-text,
#quote,
#signup {
    display: flex;
}

body,
#header,
#header .text-button-container,
#info .box-and-text,
#quote {
    flex-direction: column;
}

#header,
#header .logo-text,
#header .button-image-container,
#info .box-and-text,
#quote {
    align-items: center;
}

#header .logo-links-container,
#header .photo-attribution,
#signup .cta-box {
    width: 1130px;
}

#header button,
#signup button {
    width: 130px;
    background-color: #3882f6;
    font-weight: bold;
    border-radius: 10px;
    padding-block: 10px;
}

#header,
#footer {
    background-color: #1F2937;
}

#quote {
    background-color: #E5E7EB;
}

.secondary-text {
    font-size: 18px;
    color: #E5E7EB;
}