@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Marcellus+SC&display=swap');

* {
    user-select: none;
}

html {
    display: flex;
}

:root {
    --text: #1F1406;
    --background: #FDF9F3;
    --primary: #95671D;
    --secondary: #B6CE9F;

    --heading-font: "Marcellus SC", serif;
}

body {
    display: flex;
    align-items: flex-start;
    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: 100%;
}

#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;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#nameTag a {
    color: var(--text);
}

#nameTag:hover {
    scale: 1.1
}

.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;
}

#aboutContainer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;

    width: 100%;
    height: 100%;
}

.row {
    display: flex;
    flex-direction: row;

    width: 100%;
    height: 33.333%
}

.paragraphContainer,
.blankContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    flex-direction: column;

    font-family: 'Marcellus', serif !important;
    font-size: 1.1vw;

    width: 50%;
    height: 100%;
}

.align.left {
    width: 80% !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.align.right {
    width: 80% !important;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
}

.paragraphContainer p {
    margin: 0;
}

.paragraphContainer h1 {
    text-decoration: underline;
    margin: 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;
}