
header {

  background-image: linear-gradient(rgb(138, 0, 0),rgb(255, 0, 0),rgb(255, 255, 255));
  color:#ffffff;
  height: 100%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000000, 2px 2px 8px #0084ff;
  max-width: 100%;
  width:100%;
  font-size: 34px;
  padding-bottom: 12px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(white, rgb(245, 245, 245));
    margin: 0;
}

footer {
    background-color: crimson;
    color: white;
    margin-top: auto;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
}

h1 {
  display: grid;
  width: 100%;
  align-items: center;
  text-align: center;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  grid-gap: 20px;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 25px;
  font-weight: bold;
}

h1:before,
h1:after {
  content: '';
  border-top: 2px solid;
}


details {
  border-radius: 8px;
  background-image: linear-gradient(#F1E9D2, #cac5b4);
  color: rgb(0, 0, 0);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  cursor: default;
  font-size: 15px;
  margin: 10px 10px 10px 10px;
  box-shadow: inset, #000000;
}

details summary, details[open] summary{
  padding-left: 1em;
  font-size: 18px;
  /*background: rgb(25, 0, 255);*/
  background-image: linear-gradient(#afaca1, #A2AFA1);
  color: rgb(0, 0, 0);
  border-radius: 8px 8px 0px 0px;
  cursor: pointer;
}

details ul li a {
  color: rgb(147, 0, 0);
  left: 10px;
  position: relative;
  line-height: 30px;
  text-decoration: none;
  text-shadow: none;
}

details[open] summary {
  border-radius: 8px 8px 0px 0px;
	margin-bottom: 1em;
  cursor: pointer;
}

.button {
  border: none;
  color: white;
  padding: 5px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
  
.button1 {
  background-image: linear-gradient(#fcca74, #d1a75f);
  color: rgb(0, 0, 0); 
  border: 2px solid #685e5e;
}

.button1:hover {
  background-image: linear-gradient(#FDAF2B, #ce9127);
  color: white;
}

/** DROPDOWN MENU **/

.dropbtn {
    color: white;
    padding: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
	  background-color: #00000036;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-shadow: none;
    font-size: 14px;
  }
  
  .dropdown-content a:hover {background-color: #f1f1f1;}
  .dropdown:hover .dropdown-content {display: block;}
  .dropdown:hover .dropbtn {background-color: #00000000;}



  @media (pointer: coarse) and (orientation:portrait){
    details {
      font-size: 3.5vw;
      margin-bottom: 3vw;
    }
  
    details li {
      margin-bottom: 2vw;
    }
  
    header {
      font-size: 6.5vw;
    }
  
    p.headline {
      font-size: 4.5vw;
    }
  
    .button1 {
      font-size: 4vw;
    }

    .dropbtn {
      font-size: 4vw;
    }

    .dropdown-content a{
      font-size: 4vw;
    }

    footer {
      font-size: 4vw;
	margin: 0;
    }
  }