body {
    font-family: 'Inter', Arial, Helvetica, sans-serif
}

h1 {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #113764;
    font-size: 5rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

.smaller_text {
    font-size: 2rem;
}

h2 {
    font-weight: 600;
    color: #113764;
    font-size: 2rem;
    margin-bottom: 0;
    margin-top: 1.6rem;
}

a {
    text-decoration: none;
    position: relative;
    color: #113764;
    font-size: 2rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    width: 20rem;
    text-align: center;
    color: #113764;
    font-weight: 300;
}

.nav_element::before {
    content: "";
    height: 0.25rem;
    width: 70%;
    left: 15%;
    position: absolute;
    background: #113764;
    position: absolute;
    bottom: -0.3rem;
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav_element:hover::before {
    transform: scaleX(1);
}

.nav_bar {
    display: flex;
    justify-content: center;
    gap: 7.5rem;
    margin-top: 1rem;
}

.selected {
    text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.5);
}

img {
    zoom: 0.15;
    border-radius: 8rem;
    margin-bottom: 10.6rem;
}

.project {
    width: 32rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #113764;
    border-radius: 1.5rem;
}

.project:hover {
    box-shadow: 0.01rem 0.01rem 0.4rem rgba(0, 0, 0, 0.5);
    transform: scale(1.002);
    transition: transform 0.3s;
}

.projects {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3.2rem;
}

.about {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.about_paragraph {
    width: 50%;
    font-size: 2rem;
}

@media screen and (max-width: 519px) {
    body {
        zoom: 0.64;
    }
}