html {
  height: 100%;
  width: 100%;
}
.collumn {
  width: 50%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  border-radius: 20px;
  padding: 10px;
  min-width: 220px;
  border: 1px solid white;
  backdrop-filter: blur(10px) brightness(90%);
}

.header {
  font-size: 20px;
  color: white;
}

.toctext {
  width: 100px;
  height: 30px;
  background-color: #691f1f;
  border: black;
  border-radius: 5px;
  color: white;
  box-shadow: 3px 3px black;
  margin: 10px;
  transition: 0.2s;
}

.toctext:hover {
  transform: scale(1.05);
}

.toctext:active {
  box-shadow: none;
  transform: translate(3px, 3px);
}

.globeIcon {
    width: fit-content;
    height: fit-content;
    background-image: url(https://www.freepik.com/free-vector/modern-cycling-adventure-icon-isolated_169503864.htm#fromView=keyword&page=1&position=0&uuid=58e60d0b-a290-4cbb-afc5-eb9b60400f35&query=Bicycle);
    background-size: cover;
}

h2 {
  color: whitesmoke;
  font-size: 14;
  font-style: bold;
}

input, .extra {
  margin: 5px;
  border: none;
  padding: 8px;
  border-radius: 5px;
  transition: 0.2s;
}

input:hover {
  transform: scale(1.1);
}

input:active {
  background-color: green;
}

.submit {
  width: 60%;
  height: 30px;
  background-color: #6ee85e;
  border: none;
  border-radius: 5px;
  color: white;
  box-shadow: 3px 3px black;
  margin: 10px;
  transition: 0.2s;
}

.submit:hover {
  transform: scale(1.05);
}

.submit:active {
  box-shadow: none;
  transform: translate(3px, 3px);
}

* {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body {
  background-image: url(https://photographylife.com/wp-content/uploads/2017/01/What-is-landscape-photography.jpg);
  background-size: cover;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#message {
  display:none;
  background: #f1f1f1;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#message p {
  padding: 10px 35px;
  font-size: 18px;
}

.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "&#10006;";
}

.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "&#10004;";
}