html {
    background-color: rgb(65, 64, 64);
    scroll-behavior: smooth;
}

body {
    display: grid;
    grid-template-rows: 90% min-content;
}

main {
    display: grid;
    gap: 1rem;
    grid-template-rows: 50% 50%;
    
}

.linkrow {
    display: none;
}

@media (min-width: 60rem) {
    main {
        grid-template-columns: 4fr 6fr;
        grid-template-rows: min-content 70%;
    }
    .linkrow {
        display: flex;
    }
}

section.modellbau {
    display: grid;
    background-color: rgb(230, 248, 241);
    border-color: rgb(65, 64, 64);
    border-style: solid;
    border-width: 0px;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgb(44, 44, 44) , 0 0 0.6rem rgb(44, 44, 44) inset;
    justify-items:  center;
    padding: 1rem;
}

section.aufgaben {
    display: grid;
    background-color:rgb(255, 238, 223);
    border-color: rgb(65, 64, 64);
    border-style: solid;
    border-width: 0;
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgb(44, 44, 44) , 0 0 0.6rem rgb(44, 44, 44) inset;
    justify-items:  center;
    padding: 1rem;
}




a {
    color: blue;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: ease-in-out 0.4s;
    font-family: 'Verdana',Arial,sans-serif ;
}

a:hover {
    transition: ease-in-out 0.2s;
    text-shadow: 0.3rem 0.3rem 0.2rem rgba(98, 224, 255, 0.876), 0.3rem 0.3rem 0.1rem rgba(61, 168, 255, 0.739), 0rem 0rem 0.1rem rgb(200, 62, 255);
    
}

footer a {
    font-weight: normal;
    text-decoration: none;
    font-size: small;
    color: aliceblue;
}

footer {
    margin: 1rem;
}

section.carts .link {
    background-color: rgb(230, 248, 241);
    border-color: rgb(65, 64, 64);
    border-style: solid;
    border-width: 0px;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem rgb(44, 44, 44) , 0 0 0.6rem rgb(44, 44, 44) inset;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
}

section.schlaufuchs .link {
    background-color: rgb(255, 238, 223);
    border-color: rgb(65, 64, 64);
    border-style: solid;
    border-width: 0px;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.5rem rgb(44, 44, 44) , 0 0 0.6rem rgb(44, 44, 44) inset;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
}