* {
    box-sizing:border-box;
    margin: 0;
    font-family: URWGothicLBook, Cantarel, Helvetica;
}

@font-face {
    font-family: URWGothicLBook;
    src: url(../fonts/URWGothicLBook.woff) format("woff");
}

div {
}

.header {
    width: 100%;
    height: 100vh;

    font-family: Cantarel, Helvetica;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    color: white;

    min-height: 500px;
    background: rgb(20, 20, 20) url(../images/background1.jpg);
    background-size: cover;
}

.welcome {
    height: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0.5em;
}

.welcome img {
    height: 60%;
    padding: 0.8em;
}

.welcome h1 {
    padding: 1em;
    /* background: rgb(20, 20, 20); */
}

.menu {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;
 
    height: 8%;
    background-color: #333;
    opacity: 0.8;
}

.menu a {
    height: 100%;
    text-decoration: none;
    padding: 0.8em;
    color: white;
}

.menu a:visited {
    color: white;
} 

.menu a:hover{
    background-color: red;
}

.menu a:active{
    background-color: #333;
}
