/* Add body style */
body {
  font-family: 'Spartan', Sans-serif;
  background-color: white;
  margin : 0;
  padding: 0;
  border : 0;
}

/* Headings style */
h1 {
  font-family: 'Spartan', Sans-serif;
  color: navy;
  font-size: 4VW;
}

h2 {
  font-family: 'Spartan', Sans-serif;
  color: navy;
  font-size: 1.5VW;
}

p {
  font-family: 'Spartan', Sans-serif;
  color: navy;
  font-size: 2VW;
  line-height: 3.5VW;  
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: rgba(0,0,0,0.2);
  overflow: hidden;
  position: fixed; /* Set the navbar to fixed position */
  width: 100%; /* Full width */
  margin: 0px;

}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  color: #f2f2f2;
  text-align: center;
  padding: 1.5vw 1.5vw;
  text-decoration: none;
  font-size: 2.5VW;
  font-family: 'Spartan', Sans-serif;

}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Left-aligned section inside the top navigation */
.topnav-left {
  float: left;
}

.textAlign {
  margin-top: 20vw;
  margin-bottom: 10vw;
  margin-right: 15vw;
  margin-left: 15vw;
}

 /* -----Start registration form ------ */
 /* Style the form element with a border around it */
form {
  border: 0px solid #f1f1f1;
}

/* Add some padding and a grey background color to containers */
.container {
  padding: 10px;
  background-color: #f1f1f1;
}

/* Style the input elements and the submit button */
input[type=text]{
  width: 35%;
  padding: 12px;
  margin: 8px 0;
  font-family: 'Spartan', Sans-serif;
  font-size: 1VW;
 /* display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;*/
}

/* Style the submit button */
input[type=submit] {
  background-color: #ccc;
  color: white;
  border: none;
  padding: 12px;
  margin: 8px 0;
  width: 15%;
  font-family: 'Spartan', Sans-serif;
  font-size: 1VW;
}

input[type=submit]:hover {
  opacity: 0.8;
} 

/* Style the image grid */
.imgRow {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  text-align: center
}

/* Create 3 equal columns that sits next to each other */
.imgColumn {
  flex: 30%;
  max-width: 30%;
  padding: 0 4px;
}

.imgColumn img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


