:root,
body,
html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(to bottom right, red, #0060AE);
    color: white;
    font-family: 'Trebuchet MS';
    position: relative;
}

* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

.headflex {
    display: flex;
    position: relative;
    justify-content: center;


}

button {
    width: 80px;
    height: 40px;
    border-radius: 30px;
    border: none;
    align-items: center;
    margin: 10px;

}

.home {
    position: absolute;
    left: 0;
    margin-top: 0px;


}

.bodyflex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;

}

.button_center {
    width: 100px;
    height: 60px;
    border-radius: 30px;
    border: none;
    margin: 10px;

}

.menuButton {
    color: white;

}

.swisscomlogo {
    width: 5%;
    position: absolute;
    right: 0;

}

#map {
    width: 90%;
    margin: 0 auto;
    bottom: 20px;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    border-radius: 30px;
    height: 60%;
    visibility: hidden;
}


.headtitel {
    font-size: xx-large;
    text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}

#menu {
    color: white;
    position: absolute;
    left: 10px;
    top: 50px;
    background-image: radial-gradient(red 1%, #0060AE 99%);
    padding: 20px;
    border-radius: 10px 10px 30px 30px;
    border-style: outset;
    bottom: 100px;
    z-index: 2;
}

#menu button {
    background-color: transparent;
    color: white
}

@media screen and (max-width: 1000px) {
    .contentMid {
        grid-template-columns: 1fr 1fr;
    }

    .return {
        position: static;

    }

    .swisscomlogo {
        width: 50px;
    }

    .home {
        width: 30px;
        height: 30px;

    }
}