body{
    font-family: "Signika", sans-serif;
    font-size: 130%;
}

.page-layout{
    display: flex;
}

nav{
    margin:70px 160px 0px 45px;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.nav-link{
    transition: 0.7s ease;
}

.nav-link:hover{
    color:purple;
}

li{
    list-style: none;
}

a.active{
    font-weight: 900;
}

.monogram{
    width:100px;
    margin-bottom:18px;
}

#tabAb{
    width:15px;
    margin-left:auto;
    transform: translate(25px,-50px);
}

#tabAr{
    width:15px;
    margin-left:auto;
    transform: translate(25px,-165px);
}

#tabC{
    width:15px;
    margin-left:auto;
    transform: translate(25px,-90px);
}

#tabH{
    width:15px;
    margin-left:auto;
    transform: translate(25px,-205px);
}

#tabUU{
    width:15px;
    margin-left:auto;
    transform: translate(25px,-125px);
}

.landing{
    margin:0;
    background-color: purple;
    padding:10px;
    width: 100px;
    text-align: center;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
}

h5{
    font-size: 10px;
    color: white;
}

a{
    text-decoration: none;
    line-height: 37px;
    color: black;
    font-size: 95%;
}

h1{
    font-size: 90px;
    font-weight: 400;
    margin:0 0 25px 0;
}

.page-content {
    flex-grow: 1;
    margin-top:125px;
    width: 400px;
    display: flex;
    flex-direction: column;
}

.projectCard{
    display: flex;
    width: 900px;
}

.projectCard div{
    margin-bottom:50px;
}

.projectCard-left{
    margin-right:30px;
}

.card-thumbnail{
    width:450px;
    border-radius: 20px;
}

.card-title{
    font-size: 35px;
    font-weight: 600;
}

.card-body{
    font-weight: 300;
    line-height: 35px;
}

.projectCard-text{
    padding-top:30px;
}

.page-content-about{
    flex-grow: 1;
    margin:125px 0 0 0;
    width: 400px;
    display: flex;
    flex-direction: row;
}
.page-content-about p{
    font-size: 20px;
    font-weight: 100;
    line-height: 35px;
    margin:15px 0 0 0;
}

.portrait{
    background-color: lightgrey;
    width:395px;
    margin:100px 0 0 40px;
    text-align: center;
    border-radius: 20px;
}

.button{
    margin:30px 0 0 0;
    background-color: purple;
    color: white;
    padding:10px;
    width: 200px;
    text-align: center;
    border-radius: 15px;
}

h6{
    font-size: 25px;
    font-weight: 400;
}

.bio-body{
    width:500px;
}

@media screen and (max-width: 390px){
    *{
        padding:0;
        margin: 0;
        box-sizing: border-box;
    }

    .page-layout{
        display: block;
    }

    nav{
        display: flex;
        flex-direction: row;
    }

    .nav-link{
        font-size: 20px;
    }

    .monogram{
        width:50px;
        margin-right:20px;
        margin-left:0;
    }

    .card-thumbnail{
        width:350px;
        border-radius: 20px;
    }

    .nav-menu{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap:30px;
    }

    h1{
        font-size: 60px;
    }

    .projectCard{
        flex-direction: column;
        width: 360px;
    }

    .page-content{
        margin-left:30px;
        
    }

    #tabAr, #tabAb, #tabC, #tabH, #tabUU, .landing{
        display: none;
    }

    .page-content-about{
        flex-grow: 1;
        margin-left:30px;
        width: 360px;
        display: flex;
        flex-direction: column;
    }

    .portrait{
        width:360px;
        border-radius: 20px;
    }

}