*{
  margin: 0%;
  padding: 0%;
}
body{
  font-family: "Oswald", sans-serif;

}
.navbar{
  background-color:	#121212;
  color: white;
  padding: 10px;
}
.one
{
  padding: 10px;
}
.two{
  padding: 20px;
  width: 25%;
  background-color:violet;
  margin: 40px;
  border-radius: 12px;
  display: inline-block;
  vertical-align: top;
}
.two h2{
  color: 	#ffd700;
}
.two h4{
  margin-top: 10px;
}
.two button{
  background-color: #00ffff;
  color: black;
  border-radius: 10px;
  border: none;
  padding: 8px 15px 8px 15px;
  margin: 15px 7px 0px 7px;
}
.three{
  padding: 20px 30px 20px 30px;
  margin-top: 30px;
  bottom:30px;
  right:60px;
  background-color: black;
  color: bisque;
  border-radius: 100%;
  font-size: 30px;
  position: fixed;
}
.fouroverlay{
  background-color: black;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
}
.fivepopup {
  background-color: aqua;
  height: 400px;
  width: 40%;
  padding: 40px;
  top: 20%;
  left: 25%;
  border-radius: 10px;
  position: absolute;
  z-index: 2;
  text-align: center;
  display: none;
}
.fivepopup input{
  background:transparent;
  width: 90%;
  color: black;
  border-bottom:solid black 3px;
  border-radius: 5px;
  margin: 15px;
  padding: 10px;
  font-size: medium;
}
.fivepopup textarea{
  background:transparent;
  height: 150px;
  width: 90%;
  color: black;
  border-bottom:solid black 3px;
  border-radius: 5px;
  margin: 20px 10px 15px 10px;
  padding: 10px;
  font-size: large;
}
.fivepopup input::placeholder
{
  color: #121212;
}
.fivepopup textarea::placeholder
{
  color: #121212;
}
.fivepopup button{
  background-color: #121212;
  padding: 10px 15px 10px 15px;
  color: white;
  margin-bottom: 10px;
  margin-right: 20px;
}
.fivepopup input:focus{
  outline: none;
}
.fivepopup textarea:focus{
  outline: none;
}