:root {
    --card-border-color: rgba(255, 255, 255, 0.668);
    --card-border-shadow-color: rgb(255, 255, 255);
    --card-box-shadow-size: 0 2px 2px;
    --title-font: 'Ubuntu Mono', monospace;
}

*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    scroll-behavior: smooth;

}

body{
    position: relative;
    width: 100%;
    max-width: 100%;
}

h2{
    font-family: var(--title-font);
}

.header-content {
    font-family: 'Ubuntu Mono', monospace;
    background: rgb(10,10,10);
    background: linear-gradient(180deg, rgb(10, 10, 10) 0%, rgb(10, 10, 10) 55%, rgba(34,34,34,1) 100%);
    width:100%;
    height: 110vh;
    min-height: 1200px;
    animation: fade-in 2.25s;
}

.navbar {
    animation: fadeIn .5s ease-in;
    height: 90px;
    z-index: 99999;
    display: flex;
    justify-content: center;
}

.navbar-container {
    justify-content: center;
    display:flex;
    height: 80px;
    z-index: 999;
    width: 100%;
    margin: auto;
    padding: 0 50px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    min-width: 360px;
    justify-content: center;
}

.navbar-items {
    height: 30px;
    width: 15vw;
    justify-content: center;
    margin-left: 1vh;
    margin-right: 1vh;
    position: relative;
    top:30%;
    text-align: center;
    transition: opacity .5s ease-in-out;;
}

.navbar-items:hover .navbar-link{
    opacity: 0.65;
    transition: opacity .5s ease-in-out;;
}

.navbar-items a{
    color: white;
    text-align: center;
    font-size: 16pt;
    font-size: 1.5rem;
    text-decoration: none;
    padding-bottom: 2vh;
}

.navbar-items a .chevron-down{
    position: relative;
    height: 1.5rem;
    transform: rotate(180deg);
    transition: ease-out .6s;
    top: 5px;
    left: 5px;
}

.navbar-items:hover a .chevron-down{
    transform: rotate(0deg);
    transition: .3s ease-in-out;
}

.navbar-items .dropdown-content a{
    color: white;
    text-align: center;
    font-size: 16pt;
    font-size: 1.5rem;
    text-decoration: none;
    min-width: fit-content;
    width: fit-content;
    height: fit-content;
}

.navbar-items .dropdown-content {
    visibility: hidden;
    position: relative;
    padding-left: 1.2vh;
    padding-right: 1.2vh;
    margin-top: 2vh;
    max-width: 15vw;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ddd;
    opacity: 0;
    transition: opacity .25s ease-in-out, visibility .25s ease-in-out;
}

.navbar-items:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
}

.navbar-items .dropdown-content li {
    list-style: none;
    margin-top: 1.5vh;
    margin-bottom: 1.5vh;
    padding-left: 1vw;
    padding-right: 1vw;
}

.navbar-items .dropdown-content li:hover{
    background-color: white;
    transition: all .5s ease-in-out;
}

.navbar-items .dropdown-content li:hover a{
    color: black;
    transition: all .5s ease-in-out;
}

.header-title{
    animation: fadeIn 1s ease-in;
    width: auto;
    height:35vh;
    padding-top: 20vh;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: rgb(200, 200, 200);
    font-size: 5vw;
}

.header-typed-text-container{
    animation: fadeIn 1s ease-in;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    margin-top: 3vh;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    height: 5.4vh;
    font-size: 5vh;
    color: rgb(200, 200, 200);
}

.cursor{
    background-color: rgb(200, 200, 200);
    color: rgb(200, 200, 200);
    width: 1.6vh;
    height: 88%;
    margin-left: 0.5vh;
    font-weight: bold;
    top: 0px;
    right: -10px;
    animation: cursor 1s step-end infinite;
    visibility: hidden;
    position: relative;
}

@keyframes cursor {
    from, to { visibility: hidden; }
    35% { visibility: visible; }
}

.view-content-button-container{
    position: relative;
    top: 30vh;
    width: fit-content;
    bottom: -15vh;
    text-align: center;
    margin-top: 3vh;
    margin-bottom: 3vh;
    margin-left: auto;
    margin-right: auto;
}

.view-content-button{
    padding: 2vh 2vw 2vh 2vw;
    text-align: center;
    opacity: 1;
    font-size: 2rem;
    text-decoration: none;
    transition: ease .1s;
    color: rgb(180, 180, 180);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.view-content-button img{
    position: relative;
    top: 0.5vh;
    width: 1.5rem;
    transition: ease-out .6s;
}

.view-content-button:hover{
    font-size: 1.9rem;
    opacity: 70%; 
    transition: ease .3s;
}

.view-content-button:hover img{
    transform: translateY(1vh);
    transition: ease .3s;
    opacity: 70%;
}

.projects-container{
    width: 100%;
    background: rgb(10,10,10);
    background: linear-gradient(180deg, rgba(34,34,34,1) 0, rgba(10,10,10,1) 55%, rgba(10,10,10,1) 100%);
    padding-top: 10%;
    padding-bottom: 10%;
    min-height: 720px;
    padding-bottom: 20vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    color: rgb(200, 200, 200);
    padding-bottom: 10vh;
    padding-left: auto;
    padding-right: auto;
}

.projects-title{
    font-family: 'Ubuntu Mono', monospace;
    font-size: 16vh;
    text-align: center;
    transition: all .5s ease-in-out;
}

.projects-description{
    font-family: 'Ubuntu Mono', monospace;
    font-size: 2.8vh;
    text-align: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
    color: rgb(200, 200, 200);    
}

.projects-content{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.info-card {
    display: flex;
    height: 20vw;
    min-height: 160px;
    width: 84vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vh;
    position: relative;
    box-shadow: var(--card-box-shadow-size) var(--card-border-shadow-color);
    border-radius: 5px;
    transition: all .15s ease ;
    background-color: #030303;
    color: #ffffff;
    border-style: solid;
    border-width: 2px;
    border-color:var(--card-border-color)
}

.info-card:hover {
    transform: translate3D(0,-1px,0) scale(1.01) ;
    transition: all .15s ease ;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.30), 0 6px 6px rgba(0, 0, 0, 0.22);
}

.info-card-picture{
    box-shadow: 0 19px 38px rgba(0,0,0,.30), 0 15px 12px rgba(0,0,0,.22);
    height: 100%;
    width: 35%;
    border-radius: 3px;
}

.card-header-link{
    color: #ffffff;
    text-decoration: none;
    font-style: none;
}

.card-header-link:hover{
    color: inherit;
    text-decoration: none;
    transform:scale(1.025);
    transition: ease-out 1s;
}

.info-card a{
    color: #ffffff;
    font-style: italic;
}

.info-card h2{
    color: #ffffff;
    margin: 10px;
    padding-top: 15px;
    font-family: 'Roboto Mono', monospace;
}

.info-card .card-content{
    overflow: auto;
    margin: 15px;
    font-size: 1.2vw;
    font-family: 'Roboto Mono', monospace;
}

.about-container{
    background: rgb(10,10,10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.about-container header
{
    color: white;
    font-size: 8vh;
}

.contact-content-container{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.contact-content-container h2{
    color: white;
    font-size: 6vh;
    margin-top: 6vh;
    margin-bottom: 2vh;
}

.contact-content-container p{
    width: 80%;
    color: white;
    font-size: 2.8vh;
    margin-top: 1.2vh;
    text-align: center;
    transition: transform .5s ease-in-out, opacity .5s ease-in-out;
}

#profile-picture{
    height: 16vh;
    border-radius: 50%;
    margin: 1vh;
    margin-right: 2vw;
}

.media-links{
    height: auto;
    width: 100%;
    padding-top: 1.2vh;
    padding-bottom: 3.2vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.media-links :hover{
    cursor: pointer;
}

.link-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2vw;
    animation: fadeInExpand .5s ease-out;
    background-color: transparent;
    border-radius: 8px;
    max-width: 16vw;
}

.link-box:hover{
    animation: fadeOutShrink .5s ease-in-out;
    opacity: .8;
    transform: scale(.9);
}

.link-box img{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    justify-self: center;
}

.link-box a{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#resume-link{
    max-width: 4vw;
    animation: none;
    transform: translateY(0%);
    transition: transform .5s ease-in-out, opacity .5s ease-in-out;
    animation: fadeInExpand .5s ease-out;
    background-color: transparent;
}

#resume-link:hover{
    transform: translateY(10%);
    opacity: .9;
    transition: transform .5s ease-in-out, opacity .5s ease-in-out;
}

footer{
    min-height: 120px;
    text-align: center;
    background-color: rgb(32, 32, 32);
    padding-bottom: 10px;
}

footer p{
    color: white;
    text-align: center;
    position: relative;
    padding-top: 20px;
    font-size: 16pt;
}

@media screen and (max-width:960px) {    
    .navbar-items{
        width: 33%;
    }
    .navbar-items a{
        font-size: 4vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navbar-items .dropdown-content{
        max-width: fit-content;
    }
    .navbar-items .dropdown-content a{
        font-size: 4vw;
    }
    .navbar-items a .chevron-down{
        height: 3vw;
        vertical-align: middle;
        top: 0px;
        left: 8px;
    }
    .header-title{
        font-size: 8vw;
    }
    .header-typed-text-container{
        font-size: 5vw;
    }
    .cursor{
        height: 5vw;
        width: 2vw;
    }
    .view-content-button-container a{
        font-size: 6vw;
    }
    .projects-container{
        padding-left: 0;
        padding-right: 0;
    }
    .projects-title{
        font-size: 8vw;
    }
    .projects-description{
        font-size: 4vw;
    }
    .projects-content{
        flex-direction: column;
    }
    .projects-cards{
        width: 100%;
    }
    .info-card{
        width: 84vw;
        height: 40vw;
        margin-left: auto;
        margin-right: auto;
    }
    .info-card h2{
        font-size: 3vw;
    }
    .info-card .card-content{
        margin-top: 0;
        margin-bottom: 0;
        font-size: 2vw;
    }
    .link-box a{
        height: 10vw;
        width: 10vw;
    }
    #profile-picture {
        height: 16vw;
        margin-right: 4vw;
    }
    .about-container header{
        font-size: 12vw;
    }
    .about-container h2{
        font-size: 8vw;
    }
    .about-container p{
        width: 90%;
        font-size: 4vw;
    }
    .about-container .media-links{
        height: auto;
    }
    .about-container .link-box{
        max-width: 20vw;
        margin: 2.4vh;
    }
    .about-container #resume-link{
        max-width: 10vw;
    }
}
