/************************************************
// Design des SAW-Bildungszentrum NRW GmbH      *
// (c) 2023 by SAW-Bildungszentrum NRW GmbH     *
//                                              *
// Bei evtl. Fragen bitte an den Entwickler     *
// Marcel Wedhorn wenden.                       *
//                                              *
************************************************/

* {

}

body {

}

.info {
    top: 40px;
    position: absolute;
    color: black;
    text-align: justify;
    width: 400px;
    height: 200px;
}

header {


}

.navigation {
    height: 100vh;
    width: 100%;

}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-left: 10%;
    padding-right: 10%;

}

nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 20px;
}

nav ul li a {
    color: #1B8C42;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #000;
    text-decoration: none;
}

.logo {
    color: #1B8C42;
    font-size: 28px;
}

.logo span {
    color: black;
    font-weight: normal;
}

.logo a {
    font-weight: bold;
}

footer {
    height: auto;
    width: 100vw;
    background-color: #1B8C42;
    color: white;
    text-align: center;
    padding-top: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer {

}

