@font-face {
    font-family: Alagard;
    src: url("alagard.ttf");
}

@font-face {
    font-family: DePixel;
    src: url("DePixelSchmal.ttf");
}

html {
    overscroll-behavior: none;
    height: 100%;
}

body {
    font-family: DePixel;
    background-color: rgb(189, 153, 222);
    height: 100%;
    letter-spacing: 0.5px;
}

h1, h2, h3 {
    font-family: Alagard;
    letter-spacing: 1px;
}

a {
    color: rgb(230, 112, 16);
    font-weight: bold;
}

a:hover {
    color:rgb(185, 78, 203);
}

.center {
    margin: auto;
    display: block;
    width: 80%;
}

.box_shadow {
    box-shadow: 5px 5px 3px rgba(0,0,0,.5),inset 1px 1px 3px rgba(245,222,179,.8),inset -1px -1px 5px rgb(0,14,53),1px 1px black,-1px -1px #fffbd1,-2px -2px #000;
}

.border {
    outline: 2px;
    outline-color: #d1a278;
    outline-style: dashed;
    outline-offset: -5px;
}

.container {
    background-image: url("paper_bg.png");
    width: 80%;
    padding: 10px;
    height: 95%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-radius: 10px;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.galleryimg {
    width: 30%;
    padding: 2px;
}

.main_content {
    width: 100%;
}

.collapsed_list {
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    gap: 30px;
    
}

.selection_button_row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.selection_button {
    background-color: orange;
    padding: 10px;
    border-radius: 5px;
    width: 20%;
    margin: 5px;
    text-align: center;
    color: black;
    font-family: Alagard;
    font-size: 25px;
    text-decoration: none;
}

.menu_bar {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.title {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 80%;
    text-align: center;
}

.menu_item {
    border-radius: 5px;
    background-color: rgb(242, 148, 48);
    padding: 10px;
    margin-right:5px;
    margin-left: 5px;
    text-decoration: none;
    color: black;
    font-family: Alagard;
    font-size: 20px;
    letter-spacing: 1px;

}

.menu_item:hover, .selection_button:hover {
    background-color: rgb(255, 202, 55);
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 1), inset 0px 0px 5px white, inset 1px 1px 3px rgba(245,222,179,.8),inset -1px -1px 5px rgb(0,14,53),1px 1px black,-1px -1px #fffbd1,-2px -2px #000;
    color: rgb(149, 25, 207);
}

iframe {
    height: 100%;
}

/* mobile */

@media screen and (max-width: 650px) {
    .galleryimg {
        width: 100%;
    }
    .menu_bar {
        display: block;
    }
    .menu_item {
        display: block;
        font-size: 15px;
        padding: 5px;
    }

}