@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');

body {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: Roboto, sans-serif;
}

/* Common styles */

.header,
.footer,
.hero {
    background: #1F2937;
}

.header a {
    text-decoration: none;
}

.herotext,
.boxtext,
.footer,
.header a {
    font-size: 18px;
    color: #E5E7EB;
}

.signup {
    background: #3882F6;
    padding: 10px 35px;
    color: #F9FAF8;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    border-color: #3882F6;
    max-width: fit-content;
}

.info,
.action {
    background: #F9FAF8;
}

/* Header section */

.header {
    display: flex;
    justify-content: space-between;
    padding: 30px 12%;
}

.header ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 16px;
}

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

/* Hero section*/

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 12%;
}

.herotitle {
    font-size: 48px;
    font-weight: 800;
    color: #F9FAF8;
    margin-bottom: 10px;
}

.herotext {
    margin-bottom: 20px;
}

.left {
    display: flex;
    flex-direction: column;
    margin-right: 100px;
}

/* Info section */

.info .subtitle{
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding-bottom: 100px;
    padding-left: 12%;
    padding-right: 12%;
}

.item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 200px;
    text-align: center;
}

.infoimg {
    border: 5px solid #3882F6;
    border-radius: 20px;
}

.subtext {
    color: #1F2937;
}

/* Quote section */
.quote {
    background: #E5E7EB;
    padding: 100px 20%;
}

.quote p {
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    color: #1F2937;
    text-align: center;
}

.author {
    font-weight: 700;
    font-size: 22px;
    color: #1F2937;
    text-align: right;
}

/* Call to action section */
.action {
    padding: 100px 12%;
}

.box {
    background: #3882F6;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 150px;
}

.box .signup {
    border: 3px solid white;
}

.boxtitle {
    color: #F9FAF8;
    font-size: 26px;
    font-weight: 700;
}

/* Footer */
.footer {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gh-logo {
    width: 35px;
    height: 35px;
}

.footer a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: 5px;
}