body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: black;
}

@font-face {
    font-family: 'ataristocrat';
    src: url(fonts/ATARISTOCRAT.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sylladexFanon';
    src: url(fonts/SylladexFanon.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'owlsNInk';
    src: url(fonts/OwlsNInk.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'yoster';
    src: url(fonts/yoster.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

.main-container {
    font-family: 'sylladexFanon', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 80%;
    gap: 20px;
}

.box {
    border-radius: 5px;    
    border: 5px double white;
    padding: 20px;
    /* box-shadow: 0 0 10px #ccc; */
}

.sidebar {
    font-family: 'ataristocrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
    width: 30%;
    align-items: center;
    overflow-y: auto;  
    overflow-x: hidden;
}

.sidebar img {
    min-width: 36px;
    height: auto;
}

#window-img {
    width: 270px;
    height: 270px;
}

.tentacle-img {
    height: 220px;
}

.picture {
    object-fit: cover;
    border: 10px double white;
}

.picture:hover {
    box-shadow: 0 0 10px white;
}
.sidebar-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    height: 3rem;
    width: 100%;
    text-align: center;
}

.siteinfo-description {
    display: flex;
    flex-direction: row;
}

.updates {
    width: 60%;
}

.updates, .to-do {
    overflow: auto;
}

.sidebar-link p {
    font-size: 2rem;
}

.sidebar-link a p img {
    float: right;
    height: auto;
    width: 100px;
}

.sidebar > a:last-child {
    margin-bottom: 120px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #464646; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffffff; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c7c6c6; 
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    max-width: 800px;
    height: 100%;
    margin: 0;
}

.main-container {
    display: flex;
    flex-direction: row;
}

.title {
    font-family: 'yoster', sans-serif;
    font-size: 36px;
    text-align: center;
    margin: 0;
}

.title:hover {
    text-shadow:
        1px 1px 2px red,
        0 0 1em blue,
        0 0 0.2em blue;
}

.description {
    font-size: 18px;
    margin-top: 20px;
    flex: 1;
    max-width: 800px;
    height: 100%;
    font-size: 28px;
    overflow: auto;
    padding: 20px;
    min-width: 640px;
    max-width: 700px;
    width: 100%;
}

.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.1);
}

@media (max-width: 1363px) {
    .sidebar {
        flex-direction: column;
        gap: 20px;
        height: 100%;
        width: 30%;
        align-items: center;
    }
    .sidebar img {
        max-width: 240px;
        max-height: 240px;
    }
    .description {
        max-width: 600px;
        min-width: 400px;
    }
    .tentacle-img {
        height: 180px;
    }

}
@media (max-width: 1076px) {
    .sidebar {
        flex-direction: column;
        gap: 15px;
        height: 100%;
        width: 30%;
        align-items: center;
    }
    #window-img {
        max-width: 220px;
        max-height: 220px;
    }
    .description {
        max-width: 500px;
        min-width: 300px;
    }
    .tentacle-img {
        height: 160px;
    }
    .sidebar-link p {
        font-size: 2rem;
    }
}

@media (max-width: 922px) {
    .sidebar {
        flex-direction: column;
        gap: 10px;
        height: 100%;
        width: 30%;
        align-items: center;
    }
    #window-img {
        max-width: 200px;
        max-height: 200px;
    }
    .sidebar img {
        min-width: 20px;
        min-height: auto;
    }
    .description {
        max-width: 400px;
        min-width: 300px;
    }
    .tentacle-img {
        height: 120px;
    }
    .sidebar-link p {
        font-size: 2rem;
    }
}

@media (max-width: 722px) {
    .sidebar {
        flex-direction: column;
        gap: 10px;
        height: 100%;
        width: 30%;
        align-items: center;
    }
    #window-img {
        max-width: 200px;
        max-height: 200px;
    }
    .sidebar img {
        min-width: 20px;
        min-height: auto;
    }
    .description {
        max-width: 100%;
    }
    .content {
        width: 100%;
    }
    .tentacle-img {
        height: 120px;
    }
    .sidebar-link p {
        font-size: 2rem;
    }
}
