
body {
  margin: 0;
  padding: 50px;
  font-family: Arazati-Clara-Expandida;
}

h1{
  color: #0f6ed4;
  font-size: 50px;
}
h2{
  font-size: 60px;    
  color: grey;
}

h3  {
  font-size: 40px;
}
img{
  padding-top: 20px;
  padding-left: 5px;
  width: 300px;
  height:350px;
}
p{
  font-size: 22px;
}

.navbar {
  overflow: hidden;
  background-color: lightgrey;
}

.navbar a {
  float: right;
  font-size: 32px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

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

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

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #0f6ed4;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: lightgrey;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

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

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



input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: black;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #0f6ed4;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: lightgrey;
}

body {
  background-color: lightgrey;
}
