:root{
    --background-image1: url("../images/Fucus_rend_thallus_2.jpg");
    --banner-height: 50px;
    --highlight-color1: rgb(67, 242, 255);
    --background-dark-color1: rgb(25, 25, 27);
}

body{
    margin: 0px;
    padding: 0px;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0px;
    font-size: 1.2rem;
}

.top-banner-backdrop{
    width: 100%;
    height: var(--banner-height);
    position: absolute;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 80%);
}

.tag-line{
    font-size: 2rem;
    padding-top: 20px;
}
.tag-line>div{
    width: max-content;
    padding: 0px 50px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.top-banner {
    height: var(--banner-height);
    width: 90vw;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%); /* Adjust for the div's width */
}

nav{
    margin-left: auto;
}

nav a{
    text-decoration: none;
    color: inherit;
}

nav ul{
    display: flex;
    flex-direction: row;
}

nav ul li{
    padding: 0px;
    padding-right: 20px;
    list-style-type: none;
}

.title-container{
    margin: 20px 40px;
    padding: 0px;
    position: absolute;
    font-size: 2rem;
    text-shadow: 5px 0px 5px black;
    display: flex;
    flex-direction: row;
}

.title-container *{
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.title-container span{
    font-size: 1.5rem;
}

.image-feature{
    padding: 30px;
    background-image: var(--background-image1);
    background-size: cover;
    height: 600px;
}

.banner-padding{
    padding-top: calc(var(--banner-height) + 10px);
}

.main-button-choices{
    width: max-content;

    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
}

.bold-button{
    color: white;
    padding: 10px;
    margin-left: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--highlight-color1);
    font-size: 2rem;
}

.bold-button:hover{
    border: 2px solid rgb(255, 255, 255);
    cursor: pointer;
}

.description-feature{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.description-feature svg{
    width: 40px;
    height: min-content;
    fill: var(--highlight-color1);
}

.description-feature p{
    /* text-indent: 0px; */
}

.description-feature>div{
    background-color: var(--background-dark-color1);
    flex: 1;
    margin-right: 10px;
    padding: 20px;
}

.hover-highlight{
    /* Invisible border to maintin spacing */
    border: 2px solid rgba(0, 0, 0, 0);
}

.hover-highlight:hover{
    border: 2px solid var(--highlight-color1);
}

.description-feature>div:last-child {
    margin-right: 0;
}

.subpage{
    background-color: var(--background-dark-color1);
    margin-top: 10px;
    padding: 20px;
}

.personal-header{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.portrait{
    margin-right: 20px;
    width: 200px;
    clip-path: circle();
}

.see-more-side-button{
    margin-left: 10px;
    margin-top: 10px;
    
    max-width: 100px;
    width: 20vw;
    background-color: var(--background-dark-color1);

    display: flex;
    justify-content: center;
    align-items: center;
}

.see-more-side-button svg{
    width: 50px;
    fill: var(--highlight-color1);
}

.flex-row{
    display: flex;
    flex-direction: row;
}