/*Main CSS, applies to whole website if in desktop viewport*/
.home-block {
    width: 100%;
}

html {
    font-family: "Poppins", "Roboto", "Helvetica", sans-serif;
    background-color: #EFEFEF;
    scroll-behavior: smooth;
    max-width: 100%;
}

.overflow-wrapper {
    position: relative;
    overflow-x: hidden;
}

p {
    margin: 0px;
}

h1 {
    font-family: 'Nunito';
    font-weight: 800;
    font-size: 3rem;
    line-height: 2.9rem;
    margin: 0px;
    margin-bottom: 32px;
}

h2 {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.4rem;
    margin: 0px;
    margin-bottom: 16px;
}

h3 {
    font-family: 'Nunito';
    font-weight: 600;
    font-size: 2rem;
    margin: 0px;
    margin-bottom: 8px;
}

body {
    margin: 0px;
    font-size: 1rem;
}


a,
a:visited {
    color: black;
}

a span {
    font-size: 1.5em;
}

/* navbar-related CSS*/
.menu-item a img {
    height: 2em;
}

.navbar-logo {
    margin-right: 3em;
    translate: 0px 3px 0px;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    background-color: white;
    z-index: 1;
    position: fixed;
    box-shadow: 0px 0px 50px #00000030;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    border-radius: 1000px;
    padding: 1em 2em 1em 2em;
}

nav a {
    text-decoration: none;
}

.navbar-left .menu-item {
    margin-right: 75px;
}


.navbar-right .menu-item {
    margin-left: 50px;
}



/* Footer */
footer {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #050303;
    padding: 50px;
    padding-left: 100px;
    padding-right: 100px;
    color: white;
}

footer a {
    text-decoration: none;
    color: white;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-row.row1 {
    padding-bottom: 10px;
}

.footer-row.row2 {
    padding-bottom: 30px;
    padding-top: 30px;
    justify-content: flex-start;
}

.footer-row.row2 .footer-content-row div {
    margin-left: 30px;
}

.footer-row.row3 {
    padding-top: 10px;
}

.footer-row.row1 img {
    height: 30px;
}

.footer-row.row1 a {
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-titles {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 50px;
}

.footer-content-row {
    display: flex;
    flex-direction: row;
}

.footer-content-row img {
    height: 20px;
}

.footer-content-row a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
}

.card {
    background: white;
    box-shadow: 0px 0px 50px #00000030;
    padding: 2em;
    border-radius: 24px;
}