@charset "UTF-8";

html,
body {
    height: 100%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3vh;
    font-family: unset;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
}

body {
    background: no-repeat url(background.png) center center;
    background-size: cover;
    margin: 0;
    padding: 5%;
    position: relative;
    background-attachment: fixed;
}

#title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 70px;
    font-family: unset;
    text-align: center;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
    padding-bottom: 20px;
}

#main {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    padding-left: 20px;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#search_div {
    width: 100%;
    height: 7vh;
    padding-bottom: 10vh;
}

#search_content {
    background-color: rgba(255, 255, 255, 0.5);
    border: rgba(0, 0, 0, 0);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 10px;
    width: 30vh;
    height: 7vh;
    font-size: 2vh;
}

#search_button {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    border: rgba(0, 0, 0, 0);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    width: 7vh;
    height: 7vh;
    font-size: 2vh;
}

#lang_select {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    width: 7vh;
    height: 7vh;
    font-size: 2vh;
    appearance: none;
}

#lang_select option{
    text-align: center;
    border: none;
    border-radius: 10px;
    color: rgba(0, 0, 0, 0.8);
    width: 5%;
    height: 40px;
}

a {
    -webkit-transition: color .5s;
    transition: color .5s;
    text-decoration: none;
}

a:link {
    color: rgba(255, 255, 255, 0.5)
}

a:visited {
    color: rgba(255, 255, 255, 1)
}

a:hover {
    color: rgba(255, 255, 255, 1)
}

a:active {
    color: rgba(255, 255, 255, 1)
}

.item_icon {
    position: relative;
    image-rendering: pixelated;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.6vh;
    border-radius: 10px;
    width: 5vh;
    height: 5vh;
}

ul {
    margin: 0;
    padding: 0;
}

.item {
    margin-top: 1.3vh;
    list-style: none;
    padding-left: 20px;
    padding-bottom: 3px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}