/*Main CSS, applies to whole website if in mobile viewport*/
html {
    font-family: "Poppins", "Roboto", "Helvetica", sans-serif;
    background-color: #EFEFEF;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

p {
    font-size: 18px;
    margin-bottom: 8px;
}

a:link,
a:visited {
    color: black;
}

h1 {
    font-family: 'Nunito';
    font-weight: 800;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 16px;

}

h2 {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 10px;
}

h3 {
    font-family: 'Nunito';
    font-weight: 600;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 8px;
}

body {
    margin: 0px;
}

footer {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #050303;
    height: 300px;
    padding: 50px;
    padding-left: 50px;
    padding-right: 50px;
    color: white;
}

footer a,
footer a:visited,
footer a:link {
    text-decoration: none;
    color: white;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-row.row1 {
    padding-bottom: 10px;
    border-bottom: 3px solid white;
}

.footer-row.row2 {
    flex-grow: 1;
    padding-bottom: 30px;
    padding-top: 30px;
    justify-content: flex-start;
}

.footer-row.row2 .footer-content-row div {
    margin-left: 10px;
}

.footer-row.row3 {
    padding-top: 10px;
    border-top: 3px solid white;
}

.footer-row.row1 img {
    height: 30px;
    max-width: 40%;
}

.footer-row.row1 a {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-titles {
    display: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-content-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-content-row img {
    height: 20px;
}

.footer-content-row a {
    display: flex;
    flex-direction: row;
}

.footer-content-row div:nth-child(1) {
    display: none;
}


.card {
    background: white;
    box-shadow: 0px 0px 50px #00000030;
    padding: 1em;
    border-radius: 16px;
}