 
* {
    outline: none;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    user-select: none;
    white-space: nowrap;
}

body {
    margin: 0;
    position: relative;
}

.container-column {
    display: flex;
    flex-direction: column;
}

.container-row {
    display: flex;
    flex-direction: row;
}

.left {
    margin-left: 0;
    margin-right: auto;
}

.right {
    margin-left: auto;
    margin-right: 0;
}

.top {
    margin-top: 0;
    margin-bottom: auto;
}

.bottom {
    margin-top: auto;
    margin-bottom: 0;
}

.font-20 {

    font-size: 20px;

}

.hide {
    display: none;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

button {
    width: 100%;
    font-size: 14px;
    color: white;
    padding: 2px 8px;
    border: none;
    background-color: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    cursor:pointer;
}

.dropright.active > button {
    background-color: #ffffff59;
}

.dropright-content {
    box-shadow: 14px 14px 14px #00000033;
    position: absolute;
    pointer-events: none;
    opacity: 0;

    padding: 6px;
    border-radius: 6px;
    background-color: #544b81;
    margin-top: 100px;

    display: flex;
    flex-direction: column;

    z-index: 10;
}

.dropright {
    position: relative;
}

.dropright-btn {
    font-size: 10px;
    background-color: #7691af;
}

.dropright-content {
    background-color: #7691af;
    margin: 0;
}

.dropright.active .dropright-content{
    left: calc(100% + 9px);
    top: 0;
    pointer-events: all;
    opacity: 1;
}

.dropright-content button:hover {
    background-color: #7f43b8;
}

#header {
    top: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 48px;
    background-color: #8f55c5;
    position: fixed;
    z-index: 10;
    margin: 10px 0;
    width: 100vw;
}

#contents {
    box-sizing: content-box;
    margin: 80px 10% 40px 10%;
    min-height: calc(100vh - 184px);
    display: flex;
    flex-direction: column;
    justify-content: start;
}

#bin {
    width: 100%;
    height: 913.6px;
    border: none;
}

#footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #877a94;
    height: 64px;
    bottom: 0;
    left: 0;
    width: 100vw;
}

.dropdown a {
    float: left;
    padding: 5px 10px;
}

#header a {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
}

#navbar {
    display: flex;
    justify-content: right;
    flex-direction: row;
    align-items: center;
}


.dropdown:hover .dropdown-contents
{
    display: grid;
}

.dropdown-contents {
    display: none;
    position: absolute;
    background-color: #8f55c5;
    width: auto;
    text-align: center;
    z-index: 10;
    border-radius: 5px;
    width: auto;
    outline: 2px solid #6a20af;
}

.dropdown-contents a {
    border-radius: 5px;
}

.dropdown-contents a:hover {
    outline: 2px solid #7f43b8;
}

#navbar > a:hover{
    outline: 2px solid #6a20af;
}

#navbar > a {
    height: 100%;
    padding: 5px 10px;
    border-radius: 5px;
}

#nut {
    width: 835px;
    height: 500px;
    border: none;
}