@font-face {
    font-family: "LouisGeorgeCafe";
    src:
        url("Louis George Cafe Bold Italic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "LouisGeorgeCafe";
    src:
        url("Louis George Cafe Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "LouisGeorgeCafe";
    src:
        url("Louis George Cafe Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "LouisGeorgeCafe";
    src:
        url("Louis George Cafe Light Italic.ttf") format("truetype");
    font-weight: lighter;
    font-style: italic;
}

@font-face {
    font-family: "LouisGeorgeCafe";
    src:
        url("Louis George Cafe Light.ttf") format("truetype");
    font-weight: lighter;
    font-style: normal;
}

@font-face {
    font-family: "LouisGeorgeCafe";
    src:
        url("Louis George Cafe.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: "LouisGeorgeCafe";
    margin: 5px;
}

.dark-mode {
    background-color: black;
    color: white;
    transition: 0.5s;
}

.dark-mode a {
    color: white;
    transition: 0.5s;
}

.DarkModeButton {
    font-size: 26px;
    background-color: black;
    color: white;
    border-color: white;
}

body {
    color: black;
    background-color: white;
    font-size: 28px;
    transition: 0.7s;
}

.grid-container {
    display: grid;
    grid-template-columns: auto;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.quote {
    font-style: italic;
    border-style: solid;
    border-bottom: hidden;
    border-right: hidden;
    border-top: hidden;
    border-width: 2px;
}

a {
    text-decoration: none;
    color: black;
}

.navbarleft {
    text-align: left;
    float: left;
}

.navbarmid {
    text-align: center;
    float: center;
}

.navbarright {
    text-align: right;
    float: right;
}

.navbar {
    border-style: solid;
    border-width: 2px;
    overflow: auto;
    width: 100%
}

.projectname {
    font-style: italic;
    font-weight: bold;
}

.projectlinks {
    font-size: larger;
    border-style: solid;
    border-width: 2px;
    transition: 0.5s;
}

.projectlinks:hover {
    color: white;
    background-color: black;
    border-color: black;
}

.thoughts {
    border: 2px;
    border-style: solid;
    border-top: hidden;
    border-left: hidden;
    border-right: hidden;
}

.content {
    display: none;
}

button {
    background-color: white;
    border: solid;
    font-size: xx-large;
    transition: 0.5s;
}

button:hover {
    background-color: black;
    color: white;
    border-color: black;
}
