@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&family=Sora:wght@100;300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2rem 3rem;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;

    font-family: 'Inter', Arial;
    font-size: 1.2rem;
    font-weight: 300;
}

section#banner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #EFF8FF;
    padding: 0 3rem;
}

div#banner-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

div#banner-text h1, p {
    font-family: 'Sora', Arial;
    font-size: 3rem;
    font-weight: 500;
}

div#banner-left button {
    width: 40%;
    background-color: #0F9AFE;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15rem;
    font-family: 'Inter', Arial;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: #0F9AFE80 3px 4px 7px;
    cursor: pointer;
    transition: 0.3s;
}

div#banner-left button:hover {
    background-color: #0065C4;
    font-size: 1.3rem;
}

section#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;

    padding: 3rem 4rem;
}

section#about h2 {
    font-family: 'Sora', Arial;
    font-size: 2rem;
    font-weight: 500;
}

div#about-cards {
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-family: 'Sora', Arial;
}

div.card {
    width: 20.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

div.card i {
    font-size: 3rem;
    color: #0F9AFE;
}

div.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

div.card p {
    font-size: 1rem;
    font-weight: 300;
}

.display-none {
    display: none;
}