body {
    height: 400vh;
}

/* NAV BAR */
.navigation{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 10vh;
    background-color: rgba(255, 255, 255, 0.384);
}
.nav-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    margin-inline: 30px;
    width: 100px;
    height: 75px;
}
.list-item p {
    display: flex;
    font-size: 20px;
    font-family: sans-serif;
    transform-origin: center;
    transition: 0.25s ease-in-out;
}
.list-item:hover p {
    transform: scale(1.2);
}

/* TITLE */
#title-container {
    display: flex;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title-text {
    display: flex;
    height: auto;
    width: 100%;
    font-size: 100px;
    line-height: 0;
    font-family: sans-serif;
    align-items: center;
    justify-content: center;
}
.link-container {
    display: flex;
    height: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.link-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 60px;
}
a img {
    display: flex;
    height: 35px;
    width: 35px;
    margin-left: 10px;
    margin-right: 10px;
    transition: height 0.25s ease-in-out, width 0.25s ease-in-out;
    transform-origin: center;
}
a:hover img {
    display: flex;
    height: 45px;
    width: 45px;
    margin-left: 10px;
    margin-right: 10px;
}   

/* WORK */
#work-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-item-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    top: 0;
    padding-top: 10px;
    width: 100%;
    height: 90%;
}
.item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    width: 25%;
    height: 100%;
}
.item-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    width: 45vh;
    margin: 10px;
}
.item img {
    height: 100px;
    width: 100px;
    margin-right: 5px;
}
a .item {
    
}
.item-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: auto;
    border-left: 2px solid black;
    padding-left: 10px;
}
.item-name {
    align-items: center;
    font-family: sans-serif;
    font-size: 23px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.item-timeframe {
    font-family: sans-serif;
    margin-bottom: 10px;
    color: grey;
}
.item-description {
    align-items: center;
    font-family: sans-serif;
}
.subheading {
    font-family: sans-serif;
    margin-top: 20vh;
}
.subsubheading {
    font-family: sans-serif;
}

/* ABOUT */
#about-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* CONTACT */
#contact-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}