:root {
    --orange: #f7b21e;
    --green: #53bd45;
    --blue: #14c3e2;
    --pink: #ec1886;
    --orange-dark: #9b5d0b;
    --green-dark: #1d9119;
    --blue-dark: #1972a5;
    --pink-dark: #b41c57;
    --orange-light: #fff5bb;
    --green-light: #ebffc5;
    --blue-light: #d7fcff;
    --pink-light: #ffdbf3;
    --gray: #9e9e9e;
    --gray-light: #e7e7e7;
}

* {
    box-sizing: border-box;
}

html, body {
    background-color: var(--gray-light);
    font-family: Quicksand;
    font-size: 20px;
}

main {
    width: 800px;
    height: fit-content;
    border-radius: 20px;
    border: solid 2px var(--gray);
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    align-items: center;
    background: linear-gradient(white, var(--gray-light));
}

button a {
    text-decoration: none;
}
a {
    transition: 0.1s ease;
}

a:hover {
    letter-spacing: 1px;
    transition: 0.1s ease;
}

@font-face {
    font-family: BM Neco;
    src: url(/fonts/bm-neco.ttf);
}

@font-face {
    font-family: Quicksand;
    src: url(/fonts/quicksand.ttf);
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 3px;
    margin-bottom: 3px;
}

h1 {
    font-size: 60px;
    font-family: BM Neco;
}

h2 {
    font-size: 28px;
}

h1, h5 {
    color: var(--pink)
}

h2, h6 {
    color: var(--orange)
}

h3 {
    color: var(--green);
    font-size: 26px;
}

h4 {
    color: var(--blue);
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

p {
    color: black;
}

button.pink, button.orange, button.green, button.blue {
    color: black;
    background: white;
    width: 100%;
    border: black 2px solid;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 50px;
    font-family: Quicksand, Arial, sans-serif;
    font-size: 20px;
}

button img {
    width: 20px;
}

.img-cont-miku {
    margin-top: 30px;
     margin-bottom: 0;
}

button.pink {
    color: var(--pink);
    border-color: var(--pink);
    background: linear-gradient(white, var(--pink-light));
    transition: 0.1s ease;
    transform: rotate(1deg);
}

button.orange {
    color: var(--orange);
    border-color: var(--orange);
    background: linear-gradient(white, var(--orange-light));
    transition: 0.1s ease;
    transform: rotate(-2deg);
}

button.green {
    color: var(--green);
    border-color: var(--green);
    background: linear-gradient(white, var(--green-light));
    transition: 0.1s ease;
    transform: rotate(1.75deg);
}

button.blue {
    color: var(--blue);
    border-color: var(--blue);
    background: linear-gradient(white, var(--blue-light));
    transition: 0.1s ease;
    transform: rotate(-3deg);
}

button.pink a {
    color: var(--pink);
}

button.orange a {
    color: var(--orange);
}

button.green a {
    color: var(--green);
}

button.blue a {
    color: var(--blue);
}

button:hover {
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transform: scale(1.05);
}

header.button-container {
    width: 100%;
    display: flex;
    gap: 20px;
}

header {
    text-align: center;
}

div.part-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
}

section.bio, section.currently {
    overflow: scroll;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    height: 400px;
}

div.section-container-bio, div.section-container-currently {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

div.section-container-currently {
    transform: rotate(-2.15deg);
}

section.pink {
    border: var(--pink) solid 2px;
    transition: 0.1s ease;
    background: linear-gradient(white, var(--pink-light));
    scrollbar-color: var(--pink), var(--pink-dark);
}


section.pink p {
    color: var(--pink-dark);
}

div.section-container-bio {
    width: 120%;
    transform: rotate(1deg);
}
section.orange {
    border: var(--orange) solid 2px;
    transition: 0.1s ease;
    background: linear-gradient(white, var(--orange-light));
    scrollbar-color: var(--orange), var(--orange-dark);
}




section.orange p {
    color: var(--orange-dark);
}
section.green {
    border: var(--green) solid 2px;
    transition: 0.1s ease;
    background: linear-gradient(white, var(--green-light));
    scrollbar-color: var(--green), var(--green-dark);
}





section.green p {
    color: var(--green-dark);
}

div.col-container {
    display: flex;
    gap: 20px;
}

::selection {
    color: white;
    background-color: var(--gray);
}

#statuscafe-username {
    margin-bottom: .5em;
    font-weight: bold;
    color: var(--orange-dark)
}

#statuscafe-username a {
    color: var(--orange-dark)
}
#statuscafe-content {
    color: var(--orange-dark)
}

div.status-border-orange {
    width: 100%;
    border: var(--orange) solid 2px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: white;
}

div.status-border-pink {
    width: 100%;
    border: var(--pink) solid 2px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: white;
}