@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

body {

    background-color: rgb(20, 20, 20);

    font-family: 'Plafair Display', sans-serif;

    color: white;

    margin: 0px;

}

/* Titel */

.Titel {

    font-size: 60px;

    color: white;

    font-weight: bold;

    text-align: center; 

}

.Titeltext{

    cursor: pointer;

    text-decoration: none;

    color: white;

}

.Titeltext:hover {

    color: rgb(225, 225, 225);

}

/* dropdown für navigation */

.auswahl {

    color: white;

    background-color: rgba(34, 34, 34);

    display: flex;

    border-bottom: 1px solid white;

    border-top: 1px solid white;

    justify-content: space-around;

    padding: 10px;

    height: 30px;

    font-size: 30px;

    margin: 0px;

    font-weight: bold;  

    align-items: center;  

}

.dropdown-content {

    position: absolute;

    display: none;

    padding: 10px;

    text-align: center;

    margin: 0px;

    font-size: 20px;

    background-color: rgba(34, 34, 34);

}   

.dropdown {

    text-decoration: none;

}

.dropdown:hover > .dropdown-content {

    display: block;

}

/* anderes */

.farbe {

    text-decoration: none;

    color: white;

}

.farbe:hover {

    color: rgb(179, 179, 179);

    cursor: pointer;

}

.Bilderstartseite {

    vertical-align: middle;

    margin-left: 5px;

    margin-bottom: 6px;

}

.Text {

    text-decoration: none;

    color: white;

}

/* Footer */

.footer {

    position: fixed;

    bottom: 0%;

    display: flex;

    width: 100%;

    height: 3%;

    background-color: rgba(34, 34, 34);

    border-top: 1px solid white;

    margin-right: 5px;

    padding: 10px;

    align-items: center;

    justify-content: space-around;

    z-index: 1000;

}

/* Icon + Label im Footer zentrieren und andere Formatierungen */

.footer-box a, .footer-box i, .footer-box span {

    color: white;

    text-decoration: none;

    position: relative;

    display: inline;

    vertical-align: middle;

}

.footer-box a:hover, .footer-box i:hover, .footer-box span:hover {

    color: rgb(179, 179, 179);

}



/* Dropdown-Menus */

.footer-box .dropdown-contents {

    position: absolute;

    display: inline-block;

    vertical-align: middle;  

    bottom: 100%;

    background-color: rgba(34, 34, 34);

    padding: 10px 10px;

    text-align: center;

    visibility: hidden;

    /* kleine Einblendeanimation */

    opacity: 0;

    transition: visibility 0s linear 300ms, opacity 500ms;

}

/* Dropdown-Menus einblenden */

.footer-box .dropdowns:hover > .dropdown-contents, .footer-box .dropdowns:active > .dropdown-contents {

    visibility: visible;

    opacity: 1;

    transition: visibility 0s linear 0s, opacity 500ms;

/* Anleitungen (2x2, 3x3, 4x4) */
}
.anleitungen {
	padding: 2px;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 100px;
}
.anleitungflex {
    display: flex;
    justify-content: space-evenly;
	align-items: center;
}
.Textb {
    color: blue;
    text-decoration: none;
}



/* Media Queries */
@media screen and (max-width: 800px) {
    .dropdown:hover > .dropdown-content {
        display: none;
    }
    .footer {
        font-size: 20px;
    }
    .dropdown-content {
        margin-left: -7%;
    }
}
@media screen and (max-width: 1200px) and (min-width: 801px) {
    .footer {
        font-size: 18px;
    }
}
@media screen and (min-width: 1201px) {
    .footer {
        font-size: 16px;
    }
}