@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: 100%;
    width: 100%;

    margin: 0;

    background-color: var(--background);

    color: var(--text);
    font-family: var(--heading-font);

    overflow: scroll;
}

#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;
}

#galleryContainer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;

    height: 100%;

    padding: 0px 4% !important;
}

#galleryContainer img {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-left: 20px;

    box-shadow: -2px 3px 10px 1px rgba(0, 0, 0, 0.2)
}

.galleryHeading {
    font-weight: bold;
    text-decoration: underline;
}

.headshot {
    width: 200px !important;
}

#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;
}