@font-face {
  font-family: 'rainyhearts';
  src: url('./rainyhearts.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-image: url(./background.png);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    font-family: "rainyhearts", monospace, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#container-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

aside, main, section {
    background-color: #D7DFCA;
    border: 10px solid transparent;
    border-image: url(./green-lace-border.png) 30% round;
    border-image-outset: 4px;
}

aside {
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main {
    width: 600px;
    height: 500px;;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: black;
}

::-webkit-scrollbar-thumb {
    background-color: white;
}

::-webkit-scrollbar-thumb:hover {
    background-color: gray;
}

#logo {
    width: 300px;
}

#frog {
    position: absolute;
    top: 50px;
    width: 100px;
}

.navbar-group-title {
    background-image: url(./background.png);
    padding: 4px 8px;
    border: 10px solid transparent;
    border-image: url(./green-lace-border.png) 30% round;
    border-image-outset: 4px;
}

.navbar-group-title p {
    color: #D7DFCA;
    font-weight: 600;
}

.navbar-group ul {
    display: flex;
    padding: 12px 8px;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
}

.navbar-group li {
    cursor: pointer;
}

.navbar-group li:hover{
    letter-spacing: 1px;
}

.simple-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 10px solid transparent;
    border-image: url(./green-lace-border.png) 30% round;
    border-image-outset: 4px;
}

.simple-group-title {
    text-align: center;
    font-weight: 600;
}

#username {
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
}

#time-ago {
    font-style: italic;
    font-weight: 100; 
    font-size: 10px;
}

#update-metadata {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

#grass-divider {
    width: 100%;
}

#changelogs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#changelogs-date {
    font-weight: 600;
}

.navbar-group a {
    text-decoration: none;
    color: black;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main img {
    width: 300px;
    height: 300px
}