*{
  font-family: 'Montserrat', cursive;
}
body {
  margin: 0;
}
html {
    overflow: scroll;
    overflow-x: hidden;
    height:  100%
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
#title {
  font-family: 'Dancing Script', cursive;
  color: white;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px black;
}
#sub-title {
  font-family: 'Amatic SC', cursive;
  color: white;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 1px 1px 2px black;
}

.tile {
  background-color: rgba(150, 175, 205, .6);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 1em;
  margin-none;
  margin-top: 40px;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}
.tile::before {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
}
p {
  margin: 0;
  color: white;
  text-shadow: 1px 1px 1px black;
  text-align: justify;
}
#text-field {
  border-width: 0;
  border-radius: 2em;
  
  padding: 10px 16px 10px 16px;
  color:  grey;
  
}
#text-field:active {
  border-style: solid;
}
#submit-button {
  cursor: pointer;
  border-width: 4px;
  border-color: white;
  border-radius: 2em;
  border-style: solid;
  background: none;
  color:  white;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: lightgrey;
  opacity: 1; /* Firefox */
  font-style: italic;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: lightgrey;
  font-style: italic;
  font-size: 16px;
}
#icon-row {
  display: inline-grid;
  grid-template-columns: auto auto;
  width:  100%;
}
.icon {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homepage-image {
  border-radius: 10px;
  width: 100%;
  max-width: 640px;
}


  html {
    background-image: url("../img/flowers-landscape.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
  }
  #title {
    font-size:  80px;
  }
  #sub-title {
    font-size:  24px;
  }
  .column {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
  .tile {
      
  }
  form {
    width: 100%
  }
  #text-field {
    width: 60%;
    height: 20px;
    font-size: 16px;
    padding: 10px 16px 10px 16px;
  }
  #submit-button {
    font-size: 16px;
    padding: 8px 16px 8px 16px;
  }
  .icon-svg {
    width:  50px;
  }

@media screen and (orientation: portrait) {
  .column {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
  }
  p {
    font-size: 22px;
  }
  #submit-button {
    font-size: 32px;
    padding: 8px 16px 8px 16px;
  }
}