@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Marcellus+SC&display=swap');

* {
    user-select: none;
}

:root {
    --text: #1F1406;
    --background: #FDF9F3;
    --primary: #95671D;
    --secondary: #B6CE9F;

    --heading-font: "Marcellus SC", serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

    height: 100vh;
    width: 100vw;

    margin: 0;

    background-color: var(--background);

    color: var(--text);
    font-family: var(--heading-font);

    overflow: hidden;
}

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    width: 100vw;
}

#nameContainer,
#socialsContainer {
    display: flex;
    align-items: center;

    width: 35%;

    padding: 25px 75px;

    font-size: 24px;
    letter-spacing: 1.4px;
}

#nameContainer {
    justify-content: flex-start;
}

#socialsContainer {
    justify-content: flex-end
}

#logoContainer {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30%;
}

#logo {
    opacity: 0;
    width: 70px;
}

#nameTag {
    opacity: 0;

    text-decoration: underline;
    text-decoration-thickness: 2px;
}

#contentContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 100%;

    z-index: 2;
}

#headshotSVG {
    opacity: 0;
    position: absolute;

    width: 40vw;
    height: 40vw;

    z-index: 2;
    right: 10%;
}

.navLink {
    opacity: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-right: 40px;
}

.navLink svg path {
    transition: fill 0.2s;
    -webkit-transition: fill 0.2s;
    -moz-transition: fill 0.2s;
    -ms-transition: fill 0.2s;
    -o-transition: fill 0.2s;
}

.navLink:hover svg path {
    fill: #748f5b !important;
}

#twitter {
    margin-right: 0;
}

#spotlightImg,
#tiktokImg,
#instaImg,
#youtubeImg {
    width: 100%;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#spotlightImg:hover,
#tiktokImg:hover,
#instaImg:hover,
#youtubeImg:hover {
    scale: 0.9;
}

#infoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: absolute;
    bottom: 0;

    width: 100%;
    height: 85%;
}

.row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;

    width: 100%;
    height: 50%;
}

.infoBox {
    opacity: 0;

    display: flex;
    flex-direction: column;

    width: 50%;
    height: 100%;

    font-family: 'Marcellus', serif;
    font-size: 1.1vw;
}

.tl {
    justify-content: flex-start;
    align-items: flex-start;

    padding-left: 4%;
    padding-top: 3%;

    font-size: 2vw !important;
}

.tl .infoText {
    width: 92% !important;
    opacity: 0.9;
}

.tl .infoHeader {
    font-size: 1.8vw;
    letter-spacing: 0.2cap;
}

.tr {
    justify-content: flex-start;
    align-items: flex-end;

    padding-right: 4%;
    padding-top: 3%;

    width: 35% !important;
    text-align: right;
}

.bl {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    padding-left: 5%;
    padding-bottom: 8%;

    font-weight: bold;
}

.bl .infoText {
    width: auto;
    font-size: 1.6vw;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bl .infoText:hover {
    opacity: 1;
    letter-spacing: 0.1cap;
}

.bl .infoText.first {
    margin-top: 40px;
}

.br {
    justify-content: flex-end;
    align-items: flex-end;

    padding-right: 4%;
    padding-bottom: 3%;

    width: 35% !important;

    text-align: right;
    font-weight: bold;
}

.br .infoText a,
.bl .infoText a {
    color: var(--text) !important
}

.infoHeader {
    opacity: 0.45;

    margin: 0;

    text-decoration: underline;
}

.infoText {
    opacity: 0.7;

    width: 50%;
    margin: 0;

}

@keyframes marqueeLeft {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes marqueeRight {
    0% {
        right: 0;
    }

    100% {
        right: -100%;
    }
}