@media (min-width: 600px){

body {
    margin: 15%;
    background-color: antiquewhite;
}

.navigationbar {
    display: flex;
    flex-direction: row;
    background-color: aliceblue;
    margin: 3px;
    border-style:groove;
    border-width: 5px;
    background-color: green;
}

.navigationbar div {
margin: 5px;
padding: 20px;
font-size: 18px;
text-align: left;
align-self: top;
border-spacing: 5px;
}

.content {
    display: flex;
    flex-direction: column;
    margin: 10%;
    justify-self: flex-start;
    background-color: whitesmoke;
}

h1 {
    color: green;
    font-size: 200%;
    text-align: center;
    font-style: bold;
}

.title {
    margin: 3%;
    text-align: center;
}

.description {
    margin-bottom: 3%;
    margin-right: 3%;
    margin-left: 3%;
    text-align: left;
    text-indent: 3%;
}

.pdf {
    margin-bottom: 3%;
    margin-right: 3%;
    margin-left: 3%;
    justify-content: center;
    align-items: center;
    border-width: 10px;
    padding: fill;
    border-style: solid;
    border-color: green;
    border-width: 5px;
    border-radius: 10px;
    
}

ul{
    margin-bottom: 3%;
    margin-right: 3%;
    margin-left: 3%;
    text-align: left;
    text-indent: 5%;
}
h2 {
    font-size: 150%;
    text-align: center;
    font-style: bold;
}

img {
    border-style: solid;
    border-width: 2px;
    margin: 3%
}

.footer {
    display:flex;
    flex-direction: row;
    align-self: stretch;
    background-color: aliceblue;
    margin: 30px;
}

.footer div{
    text-align: left;
    margin: 20px;
    font-size: 15px;
}

.header {
    display: flex;
    flex-direction: row;
    align-self:flex-start;
    text-align: center;
    margin: 30px;
}

.header div{
margin: 20px;
}
}