*, *:before, *:after
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100;
}

html, body {
  height: auto;
  min-height: 100%;
}

html
{
    scroll-behavior: smooth;

    scroll-padding-top: 80px;
}

body
{
    position: relative;
    background: #07b3aa;
    background: linear-gradient(60deg, rgba(7, 179, 170, 1) 0%, rgba(9, 74, 121, 1) 35%, rgba(156, 19, 126, 1) 100%);
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: #00fff2;
    background: linear-gradient(60deg, rgba(0, 255, 242, 1) 0%, rgba(107, 193, 255, 1) 32%, rgba(220, 175, 250, 1) 66%, rgba(255, 0, 200, 1) 100%);
    background-repeat: no-repeat;


    opacity: 0;
    z-index: -1;


    transition: opacity 0.5s ease;
}

body.light-mode::before {
    opacity: 1;
}

body.light-mode .navbar-dark .navbar-brand,
body.light-mode .navbar-dark .nav-link
{
    color: #212529 !important;
}

body.light-mode main
{
    filter: brightness(0.5);
}

#my-navbar
{
    font-size: 1.25vw;
    background-color: rgba(33, 37, 41, 0.45) !important;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid grey;

    transition: background-color 0.5s ease, border-color 0.5s ease;
}


body.light-mode #my-navbar
{
    background-color: rgba(255, 255, 255, 0.45) !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

#logo
{
    height: 50px;
    width: auto;
}

#nav-center
{
    font-family: 'Orbitron', sans-serif;
}

.nav-link:hover
{
    text-decoration: underline;
}

#theme-toggle
{
    background-color: transparent;
    border: none;
    font-size: 25px;
    cursor: pointer;
}

section
{
    min-height: 100vh;
}

#title
{
    font-family: 'Geist Pixel', sans-serif;
    font-weight: bold;
    font-size: 70px;
    color: #DBD3D3;
    cursor: pointer;
}

#profession:after
{
    content: "|";
    animation: blink 0.7s infinite;
}

@keyframes blink
{
    0%, 50% {opacity: 1;}
    51%, 100% {opacity: 0;}
}

#under-title
{
    font-family: 'Geist Pixel', sans-serif;
    font-size: 20px;
    color: #A19C9C;
}

