/*Achtergrond kleur*/
body {
    background-color: #B4EDD2;
}

/*default font*/
.default {
    color: #9A7AA0;
    font-family: "Comic Sans MS";
}

/*Sidebar*/
.sidebar:hover {
    background-color: rgba(104,166,170,75%);
    top: 0;
    right: 0;
    transform-origin: right;
    width: 300px;
    height: 1200px;
    position: fixed;
}

/*Standaard dat sidebar content niet zichtbaar is tot hover*/
.sidebarContent {
    display: none;
    font-size: 50px;
}

/*show sidebar content when hovering*/
.sidebar:hover .sidebarContent {
    display: block;
    transition-delay: 3s;
    transition: all 0.3s linear;
}

/*Sidebar Settings*/
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: right;
    padding-right: 20px;
    padding-top: 8px;
    align-items: center;
    flex-direction: column;
}

/*Collum Flex Container (For pictures)*/
.flex-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    float: right;
}

/*Clears Div*/
.clear {
    clear: both;
}
