* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  color: black;
  min-height: 100vh;
  display: flex;
  flex-direction: column;  
}

footer {
  margin-top: auto;
}

p {
  font-family: arial;
  color: black;
}

.body-content { 
  font-family: arial;   
  margin: 20vh;
}

.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;  
  width: 100vw;
  font-family: arial;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;  
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  font-size: inherit;
}

.dropdown .active {
  background-color: #04AA6D;
  color: white;
}

.dropdown-content {
  display:none ;  
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 0;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 50px;  
}

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

.white-text {
  color: white;
}

.red-text {
  color: red;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
  align-items: center;
}

img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 150px;
  height: auto;
}

#profile-pic {
  margin-top: 5vh;
  width: 300px;
  height: auto;
}

@media (hover: none){
  .dropdown-content {
    display:block;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 0;
  }

  .body-content {
    margin-top: 30vh;
  }

  
}

@media all and (max-width: 489px) {
  body {
    font-size: 12px;
  }

  .body-content {  
    margin: 0px;
    margin-top: 30vh;
  }

  img {    
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 50px;
    height: auto;
  }

  #profile-pic {
    margin-top: 5vh;
    width: 150px;
    height: auto;
    
  }

  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 10px;    
  }

  .column {
    float: left;
    width: 50%;
    padding: 5px;  
  }
  
  ul {
    padding: 10px;
  }
  
  ol {
    padding: 10px;
  }
    
}

@media all and (min-width: 490px) and (max-width: 1199px) {
  body {
    font-size: 20px;
  }

  .body-content {  
    margin: 0px;
    margin-top: 22vh;
  }

  img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 100px;
    height: auto;
  }

  .topnav {
    font-size: 10px;
  }
  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 10px;    
  }
  .column {
    float: left;
    width: 50%;
    padding: 5px;  
  }
}

@media all and (min-width:1200px) {
  body {
    font-size: 25px;
  }

  .body-content {      
    margin-top: 25vh;
  }

  img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 300px;
    height: auto;
  }

  .topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 25px;    
  }

  .column {
    float: left;
    width: 50%;
    padding: 5px;  
  }  
}



#no-margin-example {
  border: 0px solid #ddd;
  border-radius: 0px;
  padding: 0px;
  
  height: auto;
}

#margin-example {
  border: 0px solid #ddd;
  border-radius: 0px;
  padding: 0px;
  
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

#no-padding-example {
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 0px;
  
  height: auto;
}

#padding-example {    
  border-color: black;
  border-style: solid;
  border-radius: 0px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  
  height: auto;    
}

#no-border-example {    
  border-width: 0px;
  border-radius: 0px;
  border-color: black;
  border-style: solid;
  padding: 0px;
  
  height: auto;
}

#border-example {
  border-width: 10px;
  border-radius: 25%;
  border-color: black;
  border-style: dotted;
  padding: 0px;
  
  height: auto;    
}