@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');
:root {
    font-family: "Poppins", sans-serif;

}

body {
    margin: 0;
}

/* NAVBAR */
.navbar-wrapper {
    display: flex;
    flex-direction: row;
    padding: 0 10%;
}

.navbar-item {
    text-decoration: none;
    color: #000;
    margin: 1.25rem 1rem;
    font-weight: 500;
    font-size: 1.25rem;
}

/* FOOTER */
.footer-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer-item {
    margin: 0.5rem 1rem;
    cursor: pointer;
    color: #000;
}



/* LOGIN */
.login-wrapper {
    display: flex;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;

}

.login-modal {
    display: flex;
    padding: 3rem 1.5rem;
    background-color: #5baac5;
    border: #797979 solid 2px;
}

.login-modal > * {
    display: flex;
    flex-direction: column;
}

/* About */
.about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.about-banner {
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.about-banner > h1 {
    margin: 0;
    font-size: 3.5rem;
    padding-top: 8.5rem;
}

.about-banner > p {
    margin: 0;
    font-size: 1.35rem;
}

#about-last-p {
    padding-bottom: calc(8.5rem - 1rem);
}

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

.about-description-line {
    display: block;
    height: 0px;
    border: 1px solid #000;
    margin-bottom: 1rem;
    width: 20%;
}

.about-description-text {
    display: flex;
    flex-direction: column;
    font-size: 1.25em;
}

.about-description-text > p {
    margin-left: 1rem;
    line-height: 1.75rem;
}

.about-description-last-text {
    margin: 0;
}

.about-description-first-text {
    margin-bottom: 1.35rem;
    font-size: 1.35rem;
    font-weight: 500;
    margin-right: 0;
    margin-top: 0;
}

.image-container {
    min-width: 300px;

    margin-right: 1.75em;
    overflow: hidden;
    height: 300px;
    position: relative;
    border-radius: 8px;
}

.image-container > img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    border-radius: 16px;
}

.whitespace {
    display: block;
    min-height: 15vh;
}

/* Projects */

.projects-header {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
}

.projects-wrapper {
    display: flex;
    flex-direction: row;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    padding: 0 10%;
    justify-content: center;
    align-items: center;
    height: 37.5rem;
}

.projects-item {
    display: none;
    flex-direction: row;
    padding: 0 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.active {
    background-color: #000;
    color: #fff;
    display: flex;
}

.projects-onhover-text {
    display: flex;
    padding: 0.5rem 10%;
    position: absolute;
    bottom: 0;
    flex-direction: column;
    height: 20%;
    width: calc(100% - 20%);
    background-color: rgba(103, 103, 103, 0.8);
    overflow: hidden;
}

.projects-bg-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.projects-title {
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
}

.projects-description {
    margin: 0;
}

.projects-wrapper > button {
    background: none;
    border: none;
    cursor: pointer;
    width: 3.5em;
    padding: 0;
    margin: 0 1.75em;
}