@font-face {
    font-family: 'niceFont';
    src: url("assets/GenchaRegular.otf");
}

@font-face {
    font-family: 'head';
    src: url(assets/AvenuedeMadison.ttf);
}

body{
    display: flex;
    background-color: #fefdf0;
    font-family: niceFont,serif;
    justify-content: center;
}

.complete-outer-class{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
}

.headline{
    text-align: center;
    font-weight: bold;
}

span.name{
    font-family: head;
    font-size: 35px;
}
span.date{
    font-size: 22px;
}

.menu{
    display: flex;
    justify-content: space-evenly;
    border-top: solid;
    border-width: 2px;
    width: 100%;
}

.menu a{
    color: black;
    text-decoration: none;
}

.image-container-top{
    height: 100px;
    display: flex;
    justify-content: center;
    width: 350px;
    background-image: url("assets/headpicture.jpg");
    background-position: 0% 50%;
}

