/*Makes text center*/
.center {
    text-align: center;
}

.right {
    text-align: right;
}

.center1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

body {
    height: 100dvh
}

/* Style the header */
header {
    background-color: #666;
    padding:1px;
    text-align: center;
    font-size: 30px;
    color: white;
  }

/* Style the footer */
footer {
    background-color: #666;
    padding: 5px;
    text-align: center;
    color: white;
  }

/* Create two columns/boxes that floats next to each other */
nav {
    float: center;
    width: 97.6%;
    background: #ccc;
    padding: 15px;
  }
  
  article {
    float: left;
    padding: 20px;
    width: 100%;
    background-color: #ffffff;
  }

/* Clear floats after the columns */
section::after {
    content: "";
    display: table;
    clear: both;
  }

  .button {
    background-color: #666;
    padding: 15px 25px;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.1s;
    cursor: pointer;
  }

  .button1 {
    background-color: #666; 
    color: white; 
  }
  
  .button1:hover {
    background-color: white;
    color: black;
  }

  .button2 {
    background-color: transparent;
    color: white;
  }

  .button2:hover {
    background-color: #ccc;
    color: black;
  }

  .button:active {
    background-color: #ffffff;
    box-shadow: 0 3px #666;
    transform: translateY(4px);
  }

  .icon {
    width: 32px;
    height: 32px;
  }

  .relative {
    position: relative;
  }
  

  .absolute {
    position: absolute;
    top: 0;
    right: 0;
  }