/* UTILITIES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* background-image: url("Bilder/Yellow-rose_1920x1200.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; */
    background-color: #000000;
    font-family: sans-serif;
}

body {
    background-color: transparent
}

a {
    text-decoration: none;
    color: red;
}

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;
}

#headH1 {
    margin: 210px auto 0px;
    font-size: 43px;
    color: red;
    text-shadow: 1px 1px #fff;
    font-weight: normal
}

.img {
    display: block;
    max-width: 280px;
    width: 88%;
    margin-top: 123px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    border: 3px solid orange
}

h2 {
    margin: 123px auto;
    font-size: 37px;
    color: red;
    text-shadow: 1px 1px #fff;
    font-weight: normal
}

#float {
    position: relative;
    /*-webkit-animation: floatBubble 10s infinite normal ease-out;
    animation: floatBubble 10s infinite normal ease-out; */
}

#float {
    width: 320px;
    margin-left: auto;
    margin-right: auto
}

#float p,
#float a {
    font-size: 21px;
    color: red;
    text-shadow: 1px 1px #fff;
}

#mail {
    font-size: 21px;
    color: red;
    text-shadow: 1px 1px #fff;
}

#chef {
    width: 250px;
    display: block;
    margin: 0 auto;
    height: auto
}

@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;
    }
}

@media screen and (max-width: 359px) {

    #float {
        width: 280px;
        margin-left: auto;
        margin-right: auto
    }
}
