/*
Theme Name: SEGELN-AHOI
Author: gradampol
Description: Adam's segeln
Version: 30.05.24
Text Domain: Segeln-ahoi.de
*/

img {
display: block;
  margin-left: auto;
  margin-right: auto;
 max-width: 100%;
 max-height: 100%;
}
      * {

        margin: 0;
        padding: 0;
        list-style-type: none;
        box-sizing: border-box;
      }
      body {
 	background: #99ddff;
        font-family: 'Helvetica Neue', 
      }
      nav {
        text-align: center;
      }
      .menu {
        display: inline-block;
      }
      .menu>li {
        float: left;
        color: #ffffff;
        width: 140px;
        height: 40px;
        line-height: 40px;
        background: #0066ff;
        cursor: pointer;
        font-size: 25px;
      }
      .sub-menu {
        transform: scale(0);
        transform-origin: top center;
        transition: all 300ms ease-in-out;
      }
      .sub-menu li {
        font-size: 25px;
        background: #66ffff;
        padding: 8px 0;
        color: #000099;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transform: scale(0);
        transform-origin: top center;
        transition: all 300ms ease-in-out;
      }
      .sub-menu li:last-child {
        border-bottom: 0;
      }
      .sub-menu li:hover {
        background: white;
      }
      .menu>li:hover .sub-menu li {
        transform: scale(1);
      }
      .menu>li:hover .sub-menu {
        transform: scale(1);
      }
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: blue;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

