@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: 100%;

    margin: 0;

    background-color: var(--background);

    color: var(--text);
    font-family: var(--heading-font);

    overflow: scroll;
}

fieldset {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 2px dashed rgba(31, 20, 6, 0.4);
    padding: 10px 30px;

    font-size: 1.3vw;
}


fieldset p {
    font-family: "Marcellus", serif;
    margin: 10px
}

fieldset p a {
    color: var(--text);
    font-weight: bold;
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
}

fieldset p a:hover {
    color: #6c7a5f;
}

#cvLink {
    background-color: rgba(31, 20, 6, 0.9);
    color: var(--background);
    padding: 15px 25px;
    font-size: 20px;
    margin-top: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    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);
}

#cvLink:hover {
    scale: 0.95;
}

#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;
}

#contactContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    height: 100%;
}


#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;
}