@font-face {
    font-family: "Hack";
    src: url("resources/Hack-Regular.ttf");
}

body {
    background-color: #0A0314;
    min-height: 100vh;
    min-width: 100vw;
    overflow: hidden;
    margin: 0;
}

/*
 Navbar
*/

.navbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    z-index: 100;
}

.navbarLeft {
    display: block;
    position: relative;
    text-align: left;
    height: 4rem;
}

.navbarIcon {
    margin-left: 2rem;
    height: 3rem;
    border: 0.15rem solid #A6A6A6;
    border-radius: 50%;
}

.navbarMiddle {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.navbarButton {
    font-family: "Hack";
    font-size: 0.9rem;
    color: #A6A6A6;
    text-decoration: none;
    margin-left: 5rem;
    margin-right: 5rem;
    transition: 0.2s ease-in-out;
}

.navbarButton:hover {
    color: #da9385;
}


/*
 Title
*/

.titleContainer {
    width: 100vw;
    height: 70vh;
    display: block;
    position: relative;
}

.titleBox {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 50%;
    border-radius: 1rem;
    box-shadow: 0 0 1.5rem #E6E6FA;
    display: flex;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.titleImage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    border: 0.15rem solid #A6A6A6;
    border-radius: 50%;
    filter: contrast(90%) brightness(80%);
}
.titleLeftText {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.textLeft {
    display: inline-block;
    position: relative;
    width: 90%;
    margin: 5%;
    padding: 0;
}
.titleLeft,
.titleRight {
    display: inline-block;
    position: relative;
    width: 49.5%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.titleTextBig,
.titleTextSmall {
    display: block;
    position: relative;
    color: #A6A6A6;
    font-family: "Hack";
}

.titleTextBig {
    margin-top: 0;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.titleTextSmall {
    font-size: 0.8rem;
    margin-bottom: 0;
}


/*
 Footer
*/

.footer {
    display: flexbox;
    justify-content: center;
    justify-items: center;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 3rem;
    z-index: 100;
}

.footerMiddle {
    position: relative;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footerText {
    display: inline-block;
    font-family: "Hack";
    font-size: 0.9rem;
    color: #A6A6A6;
    text-decoration: none;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 0.3rem;
    transition: 0.2s ease-in-out;
}

a {
    font-family: "Hack";
    color: #A6A6A6;
    text-decoration: none;
}

.linkiconImage {
    color: #A6A6A6;
    transition: ease-in-out 0.4s;
    font-size: 1em;
    display: inline-block;
    position: relative;
    z-index: 13;
    transform: translateY(1.7122%);
}

.titleTextBig span {
    opacity: 0;
    animation: fadeEffect 0.1s ease-in forwards;
}

@keyframes fadeEffect {
    to {
        opacity: 1;
    }
}

#terminal-page {
    transform: translateY(100%);
}
