/* Positioning of website items */
* {
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
    background-color: rgb(255, 184, 254);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  
/* -------------------------------------------------------------------- */
  /* Navigation colors */
  nav {
    background-color: rgb(236, 106, 240);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Navigation box */
  nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
  }

  nav h2:hover{
    padding: 15px 15px;
    background-color: rgba(245, 138, 255, 0.772);
  }

  nav li {
    height: 50px;
  }

  nav a {
    /* anything in nav a containers is costumized */
    height: 50px;
    padding: 0 30px; /* spacing of texts */
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
  }

  /* -------------------------------------------------------------------- */




  /* -------------------------------------------------------------------- */

  .botnav{
    background-color: rgb(236, 106, 240);
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  .botnav a{
    float: left;
    padding: 15px 15px;
    display: block;
    text-align: center;
    color: black;
    text-decoration: none;
  }

  .botnav a:hover{
    background-color: rgba(245, 138, 255, 0.772);
  }

   /* -------------------------------------------------------------------- */


  /* -------------------------------------------------------------------- */

  .Info h2{
    display: block;
    padding: 15px 15px;
    color: black;
  }

  .Info img{
    display: flexbox;
    padding: 10px 80px;
  
  }  

  .Info a:hover{
    background-color: rgba(245, 138, 255, 0.772);
  }

  .Info a{
    display: block;
    padding: 15px 15px;
    color: black;
    text-decoration: none;
  }

  /* -------------------------------------------------------------------- */



  /* -------------------------------------------------------------------- */

  .Other1nfo h2{
    display: block;
    padding: 15px 15px;
    color: black;

  }

  .Other1nfo a:hover{
    background-color: rgba(245, 138, 255, 0.772);
  }

  .Other1nfo a{
    display: block;
    padding: 15px 15px;
    color: black;
    text-decoration: none;
  }

  /* -------------------------------------------------------------------- */