/* || GENERAL STYLES */

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

ul {
    display: flex;
    list-style-type: none;
    gap: 10px;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a {
    text-decoration: none;
    color: #E5E7EB;
    font-weight: bold;
    font-size: 18px;
}

/* || Header */
header {
    display: flex;
    justify-content: space-between;
    background-color: #1F2937;
    padding-left: 200px;
    padding-right: 200px;
    align-items: center;
}

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

/* || Content container */
.content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* || First section of the page */
.hero-signup {
    padding-left: 200px;
    padding-right: 200px;
    display: flex;
    background-color: #1F2937;
    justify-self: start;
    align-items: center;
    min-height: 360px;
    justify-content: space-around;
    flex: 1; 
}

.hero-text{
    display: flex;
    flex-direction: column;
    max-width: 400px;


}

.hero-main-text {
    font-size: 48px;
    font-weight: bolder;
    color: #F9FAF8;
    margin: 0;
}
.hero-sub-text {
    font-size: 18px;
    color: #e5e7eb;
    margin: 0;
}
.sign-up {
    padding: 10px;
    background-color: #3882F6;
    max-width: 100px;
    color: #F9FAF8;
    font-size: 20px;
    font-weight: bold;
    border-radius: 12px;
    border: 1px solid #3882F6;
}

.hero-image > img{
    height: 200px;
    width: 400px;
}

.small-img > img{
    height: 200px;
    width: 200px;
    border-radius: 15px;
    border: 3px solid #3882F6;
}

/* || Second section of the page */

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 360px;
    padding-left: 200px;
    padding-right: 200px;

}

.random-info {
    font-size: 36px;
    font-weight: bolder;
    color: #1F2937;
}

.infobox {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

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

.img-text {
    margin-top: 0px;
    font-weight: 200;
}

.small-img {
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* || Third section of the page */

.quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e5e7eb;
    justify-content: center;
    padding-left: 200px;
    padding-right: 200px;
    flex: 1;
    min-height: 360px;
}

.quote-text {
    color: #1F2937;
    font-size: 36px;
    font-weight: lighter;
    font-style: italic;
    text-align: center;
}
.quote-sign {
    align-self: flex-end;
    font-weight: bold;
}

/* || Fourth and last section of content page */

.content-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
    padding-left: 200px;
    padding-right: 200px;
    flex: 1; 
}

.call2action{
    background-color: #3882F6;
    border-radius: 15px;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.call2action-textbox{
    flex-direction: column;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
}
.call2action-header{
    color: #F9FAF8;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    margin-bottom: 0;
}

.call2action-text{
    color: #F9FAF8;
    font-size: 28px;
    display: flex;
    margin-top: 0;
}

.call2action-button{
    background-color: #3882F6;
    border: 2px solid #F9FAF8;
    border-radius: 8px;
    color: #F9FAF8;
    font-size: 40px;
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
}

.c2a-button{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

/* || Footer */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1F2937;
    font-size: 18px;
    color: #E5E7EB;
}