.seite {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: auto 1fr 100px;
    min-width: 45em;
    gap: 2rem 5rem;
}

nav {
    padding-right: 10px;
    background: hsl(207, 65%, 79%);
    padding-bottom: 1200px;
}

main {
    grid-row: span 2;
    list-style: none;
    width: 100%;
    padding-bottom: 200px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 180px;
    left: -100%;
    top: 100%;
    z-index: 1;
    transition: left 0.3s;
}

.dropdown:hover .dropdown-content {
    display: block;
    left: 100%;
}



header {
    grid-column: 1 / -1;
    text-align: center;
}

#demotext {
    color: #FFFFFF;
    background: hsl(207, 65%, 79%);
    text-shadow: 4px 3px 0px #7A7A7A;
    color: #FFFFFF;
    background: hsl(207, 65%, 79%);
    font-size: 70px;
}


#menu {
    font-size: 30px;
    color: blue;
}

#menu:hover {
    color: red;
}

p {
    font-size: 20px;
}

h4 {
    font-size: 30px;
}