/* UTILITIES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

html {
    background-image: url("Bilder/Yellow-rose_1920x1200.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: sans-serif;
}

body {
    background-color: transparent
}

#Mona {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#Rosen {
    display: inline-block
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

/* NAVBAR STYLING STARTS */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 7;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #ff0000;
    color: #fff;
}

.nav-links a {
    color: #ffffff;
    font-style: italic
}

/* LOGO */
.logo img {
    width: 32px;
}

/*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox] {
    display: none;
}

/*HAMBURGER MENU*/
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}

.menu li:hover {
    background-color: #ff0000;
    border-radius: 5px;
    transition: 0.3s ease;
}

.menu li {
    padding: 5px 14px;
}

/* DROPDOWN MENU */
.services {
    position: relative;
}

.dropdown {
    background-color: rgb(255, 0, 0);
    padding: 1em 0;
    position: absolute;
    /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 35px;
}

.dropdown li + li {
    margin-top: 10px;
}

.dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: left
}

.dropdown li:hover {
    background-color: #ff0000;
}

.services:hover .dropdown {
    display: block;
}

h1 {
    font-size: 43px;
    color: red;
    display: inline;
    text-shadow: 1px 1px #fff;
    font-weight: normal
}

h2 {
    font-size: 37px;
    color: red;
    display: inline;
    text-shadow: 1px 1px #fff;
    font-weight: normal
}


#a1 {
    display: block;
    width: 280px;
    height: auto;
    animation: leaves 2s ease-in-out infinite alternate;
    -webkit-animation: leaves 2s ease-in-out infinite alternate;
}

/*@keyframes leaves {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        transform: scale(1.3);
        -webkit-transform: scale(1.3);
    }
}*/



@media screen and (max-width: 768px) {

    .menu {
        display: none;
        position: absolute;
        background-color: #ff0000;
        right: 0;
        left: 0;
        text-align: left;
        padding: 16px 0;
    }
    
    .menu li {
        width: 100%
    }

    .menu li:hover {
        display: inline-block;
        background-color: #ff0000;
        transition: 0.3s ease;
    }

    .menu li + li {
        margin-top: 12px;
    }

    .menu a {
        display: block;
        min-width: 100%
    }

    input[type=checkbox]:checked ~ .menu {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .dropdown {
        left: 50%;
        top: 30px;
        transform: translateX(35%);
    }

    .dropdown li:hover {
        background-color: #ff0000;
    }

    #a1 {
        width: 200px;
        top: 40px;
    }
}

@media screen and (max-width: 479px) {

    h1,
    h2 {
        font-size: 8.8vw
    }

    #a1 {
        width: 170px;
        top: 60px;
    }
}
