* {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    height: 100vh;
}

body {
    background-color: #1f2e40;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body a{
    text-decoration: none;
    color: black;
}

.container {
    display: grid;
    grid-template-columns: 1fr 20fr;
    grid-template-rows: 1fr 6fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    height: 100%;
}

.container header {
    display: flex;
    justify-content: space-between;
	align-items: center;
	grid-column: 1 / -1;
    z-index: 50;
}

.container header, main, div {
    box-shadow: 2px 2px 5px;
    padding: 5px;
}

.container #logo {
    width: 10%;
}

.menu {
    background-color: #283747;
}

.menu img {
    width: 3em;
}

.full-center {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.loginform {
    width: 20vw;
    height: 30vh;
    text-align: center;
    padding: 5px;
}

.col {
    display: block;
    justify-content: center;
}

.col input {
    width: 70%;
    margin: 12px;
    height: 2rem;
}

.rounded div, main, aside, footer, header{
    border-radius: 10px;
    margin: 5px;
}

.rounded #profile {
    border-radius: 0px;
    margin: 0px;
    box-shadow: 0px 0px 0px;
    position: relative;
}

.list-top-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dropdown {
    display: none;
    position: fixed;
    z-index: 100;
    right: 5;
    background-color: #283747;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}

.dropdown a{
    width: 70%;
}

.dropdown a:hover {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6); /* Glow um den Button */
    background: rgba(0, 255, 255, 0.1); /* Optionaler Hintergrund für mehr Effekt */
    border-radius: 4px; /* Runde Ecken (optional) */
}

.hover-to-dropdown:hover .dropdown{
    display: flex;
    flex-direction: column;
}