body {
    font-family: "Roboto";
    display: flex;
    flex-direction: column;
}

h3 {
    margin: 0;
}

h2 {
    font-size: 36px;
    color: #1F2937;
    font-weight: 900;
    text-align: center;
}

h1 {
    margin: 0;
}

p {
    margin: 0;
}

button {
    background-color: #3882F6;
    color: white;
    border-radius: 5px;
    padding: 4px 16px;
}

.top button {
    border-color: #3882F6;
}

.top {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 8px 300px 50px;
}

#main-logo {
    width: 250px;
    height: auto;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.header img {
    width: 30px;
    height: auto;
    border-radius: 12px;
}

.links {
    display: flex;
    gap: 30px;
    font-size: 18px;
}

.links a {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 700;
}

.upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.hero button {
    align-self: flex-start;
}

.hero h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.hero p {
    font-size: 18px;
    color: #E5E7EB;
}

.hero h3 {
    font-size: 24px;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 16px;
}

.info-box {
    width: 250px;
    overflow-wrap: break-word;
}   

.info-box img {
    width: 250px;
    height: auto;
    border-radius: 5px;
    outline-style: solid;
    outline-color: #3882F6;
}

.quotes {
    background-color: #E5E7EB;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

.quotes p {
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
}

.quote-container {
    width: 600px;
    overflow-wrap: break-word;
}

#by-forsen {
    text-align: right;
    font-size: 24px;
    font-weight: 900;
}

.call-background {
    background-color: white;
    padding: 100px 200px;
}


.call-action {
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #3882F6;
    padding: 40px 36px;
}

.call-text {
    width: 500px;
    overflow-wrap: break-word;
}

.call-text h2 {
    color: white;
    text-align: left;
}

.call-action button {
    border-color: white;
}

.footer {
    background-color: #1F2937;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}