/* ---------------- Global ---------------- */
body{
    background-color: #0001fc;
    display: flex;
    padding: 0%;
    margin: auto;
    width: 100%;
    max-width: 1200px;
    flex-direction: column;
}

.wrapper {
    margin:auto;
    width: 95%;
    background-color: #ffff;
    border-color: black;
    height: auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

img:hover {
    opacity: 0.5;
}

a:hover {
    color: blue;
}

/* ---------------- Banner ---------------- */
.topper {
    display: flex;
    height: 160px;
    background-image: url(/img/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.topperleft {
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topperright  {
    height: 160px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 100%;
    display: flex;
    padding-right: 10px;
}

.topperright p {
    display: flex;
    height: 100%;
    margin: 0;
    text-align: center;
    align-items: center;
}

#logo {
    width: 80%;
    height: 80%;
    border: 0;
    margin-left: 10%;
}

/* ---------------- Navigation ---------------- */
#header {
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    align-items: center;    
    justify-content: center;
    background-color: rgb(192, 189, 189);
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    height: 50px;
}

.navbar {
    font-size: xx-large;
    display: flex;
    justify-content: center;
    align-items: center
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: inline-block;
}

.navbar li a {
    padding: 0 20px;
    text-decoration: none;
}

/* ---------------- Main ---------------- */
article {
    margin-left: 10px;
    margin-right: 10px;
}


/* ---------------- Footer ---------------- */
.footer {
    margin-top: 15px;
    border-top: 1px solid black;
}

#footmenue {
    margin-top: 20px;
    margin-left: 20px;
    font-size: large;
}

#footmenue a {
    text-decoration: none;
}

/* ---------------- Copyright ---------------- */
.copyright {
    margin: 25px;
    text-align: center;
}

/* ---------------- Responsive Design ---------------- */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.navbar {
    font-size: medium;
}

.navbar li a {
    padding: 0 5px;
}

.topperright p {
    font-size: x-large;
}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.navbar {
    font-size: large;
}

.navbar li a {
    padding: 0 5px;
}

.topperright p {
    font-size: xx-large;
}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.navbar {
    font-size: x-large;
}

.topperright p {
    font-size: 250%;
}
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.navbar {
    font-size: xx-large;
}

    .topperright p {
    font-size: 300%;
}
} 