*{
    padding: 0;
    margin: 0;
    border: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body{
    background-image: url("https://dummyimage.com/1920x1080/383838/ffffff.jpg&text=dummy_image");
    color: #fff;
}

.alert, .alert-danger{
    color: #f00;
}

.alert-success{
    color: #0f0;
}

.container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 1em;
}

.main_content{
    padding: 2em;
    order: 2;
    flex-grow: 10;
    margin-left: 1em;
}

.guide_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
    flex-grow: 0.5;
}

.game_logo{
    width: 200px;
    height: 200px;
}

.game_title{
}

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

.menu div{
    display: flex;
    width: 280px;
    height: 140px;
    margin: 10px;
    background-color: rgb(160, 30, 30);
    border: solid 2.5px black;
    font-size: 24px;
}

.menu div a{
    font-size: 1.75em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.menu div a:link{
    color: black;
    text-decoration: none;
}
.menu div a:visited{
    color: black;
    text-decoration: none;
}
.menu div a:active {
    color: black;
    text-decoration: none;
}

.menu div.active{
    background-color: rgb(255, 255, 255);
}

.list_container{
    display: flex;
    flex-direction: column;
    padding: 2em;
}