body{
    background-color: #111;
    color: white;
}

h1{
    font-family: "WDXL Lubrifont TC";
    font-weight: 350;
}

.title{
    font-size: 40px;
    color: #00bb77;
    text-align: center;
}

.important {
    display: inline-block;
    background-image: linear-gradient(180deg, darkgreen, #00bb77);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

p {
    font-family: "Swanky and Moo Moo", sans-serif;
    font-size: 18px;
}

@keyframes alert{
    from{
        color: red;
    }
    to{
        color: white;
    }
}

.alert{
    text-transform: uppercase;
    animation: alert 0.5s infinite alternate ease-in-out;
}

a{
    color: #00bb77;
    text-decoration-color: #00bb77;
}

a .sbitem{
    font-family: "Sometype Mono", monospace;
}

@keyframes rainbow {
  0%,100% {
    color: red;
    text-decoration-color: red;
  }
  16.67% {
    color: orange;
    text-decoration-color: orange;
  }
  33.34% {
    color: yellow;
    text-decoration-color: yellow;
  }
  50% {
    color: #00ff00;
    text-decoration-color: #00ff00;
  }
  66.67% {
    color: #5555ff;
    text-decoration-color: #5555ff;
  }
  83.34% {
    color: violet;
    text-decoration-color: violet;
  }
}

a:hover{
animation: rainbow 2s infinite linear;
}

.page{
    display: flex;
    align-content: center;
    margin: 40px;
}

.sidebar{
    display: block;
    margin: 0;
    box-shadow: 0 0 0px 1px white;
    padding: 5px;
    width: fit-content;
    height: fit-content;
    transition: box-shadow 0.25s ease-in-out;
}
.sbitem{
    margin-top: 5px;
    padding: 4px;
    font-size: 18px;
    font-family: "Swanky and Moo Moo", sans-serif;
}

#thispage,#thispage:hover{
    color: white;
    font-weight: 700;
    text-decoration: none;
    animation: none;
}

.maincontent{
    display: block;
    margin: 0;
    margin-left: 10px;
    background-color:  #111;
    box-shadow: 0 0 0px 1px white;
    width: 500px;
    padding-left: 20px;
    padding-right: 20px;
    transition: box-shadow 0.25s ease-in-out;
    
}

.maincontent:hover,
.sidebar:hover{
    box-shadow: 0 0 10px 5px #00bb77;
}

.thoughtbox{
    position: relative;
    display: block;
    float: right;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 175px;
    max-width: 450px;
    min-height: 75px;
    height: 200px;
    padding: 10px;
    background-color: #111;
    box-shadow: 0 0 0px 1px white;
    transition: box-shadow 0.25s ease-in-out;
    transition: width 0.5s cubic-bezier(0.25, 2, 0.75, 1.1);
    text-align: center;
    overflow-x: hidden;
    overflow-y: auto;
}

.thoughtbox:hover{
    box-shadow: 0 0 10px 5px #00bb77;
    width: 300px;
}

.thought{
    animation: drift 2.5s infinite ease-in-out;
    transition: letter-spacing, 0.5s cubic-bezier(0.25, 3, 0.75, 1);
    letter-spacing: 0;
}

.thought:hover{
    letter-spacing: 1px;
}

@keyframes drift{
    0%,100%{
        transform: translateY(-5px);
    }
    50%{
        transform: translateY(5px);
    }
}

.thought p,
.thought h2{
    font-family: "Cherry Bomb One", monospace;
}

 .button{
    display: block;
    outline: 5px solid #00bb77;
    color: #00bb77;
    background-color: #111;
    text-align: center;
    height: fit-content;
    max-width: fit-content;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 9999px;
    margin-inline: auto;
}