<!DOCTYPE html>
<html>
<head>
<style>

html {
    font-size: 20px; /* px means "pixels": the base font size is now 10 pixels high */
    font-family: "Noto Sans", sans-serif; /* this should be the rest of the output you got from Google Fonts */
  }
  h1 {
    font-size: 60px;
    text-align: center;
  }
  
  p,
  li {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
  }
  html {
    background-color: #00888f;
  }
  body {
    width: 600px;
    margin: 1 auto;
    background-color: #e3e3e3;
    padding: 0 20px 20px 20px;
    border: 5px solid rgb(228, 111, 226);
  }
   /* Dropdown Button */
   .dropbtn {
    background-color: #86C58A;
    color: rgb(216, 216, 216);
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0887aa;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #80BE84;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #e18bed;} 
  
  </body>
  </html>
  
  
  
  
  
  :root {
  --color1: #6F88A9;
  --color2: #B075AC;
  --color3: #B89D7A;
  --color4: #80BE84;
  --color5: #86C58A;
}