

/* FONT FONT FONT */ 

.dongle-regular {
    font-family: "Dongle", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.syne-mono-regular {
    font-family: "Syne Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }
  
.doto {
    font-family: "Doto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "ROND" 0;
  }

  .space-mono-regular {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }
  
  .space-mono-bold {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: normal;
  }
  
  .space-mono-regular-italic {
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: italic;
  }
  
  .space-mono-bold-italic {
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-style: italic;
  }
  

/* PAGE PAGE PAGE */ 


.header {
    background-color: #ffffff;
    text-align: left;
    padding: 20px;
    /*outline: solid;
    /*outline-color: aqua;*/
  }


 /* The navbar container 
 topnav {
    overflow: hidden;
    background-color: #d85c5c;
    outline: solid;
    outline-color: aqua;
    text-align: right;
    float: right;
  } */ 
  
  /* Navbar links */
  .topnav a {
    float: left;
    display: block;
    color: #4666ff;
    text-align: left;
    width: 25%;
    padding: 20px 0px 0px 0px;
    text-decoration: none;
    font: 20px "Syne Mono", Helvetica, sans-serif;
  }

    .topnav a .nav-right {
    float: right;
    text-align: right;
    padding: 20px 10px 0px 0px;
    outline: solid;
    outline-color: aqua;
    width: 25%;
  }

  /* Links - change color on hover */
 .topnav a:hover {
    background-color: #d2d2d2;
    color: black;
  } 

 /* Create three equal columns that float next to each other */
 .column.left-left {
    float: left;
    width: 25%;
    color: #8c9ef8;
    text-align: center;
    font: 20px "Syne Mono", Helvetica, sans-serif;
    /*outline: solid;
    outline-color: aqua;*/
  }

  .column.left-left a {
    float: left;
    color: #8ea1fd;
    text-align: center;
    width: 25%;
    text-decoration: none;
    font: 20px "Syne Mono", Helvetica, sans-serif;
  }

  .column.left-right {
    float: left;
    width: 25%;
    /*outline: solid;
    /*outline-color: aqua;*/
  }

  .column.right {
    float: left;
    width: 50%;
    /*outline: solid;
    /*outline-color: aqua;*/
  }
  
  /* Clear floats after the columns */
 .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  } 

  .intro {
    width: 80%;
    padding: 150px 0px 0px 0px;
  }

p {
    font: 16px Arial, Helvetica, sans-serif;
}

ul {
  font: 16px Arial, Helvetica, sans-serif;
  list-style-type: "\2727";
}

li {
  font: 16px Arial, Helvetica, sans-serif;
}



.large-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 300px 0px 0px 0px;
}

/*
#content1 {
  display: none;
    background: green;
    color: white;
    padding: 5em;
  }

  #content1:target {
    display: block;
  }
    */

  .container {
    position: relative;
    width: 300px;
    height: 200px;
    background-color: lightblue;
  }

  .top-div {
    position: absolute;
    width: 150px;
    height: 100px; 
    background-color: #d85c5c;
    left: 30px;
    top: 50px;
  }

  .bottom-div { 
    position: absolute;
    width: 200px;
    height: 120px;
    background-color: yellowgreen;
    left: 10px;
    top: 10px;
  }

