:root {

}

html,body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

h1 {
  text-align: center;
  color: #444;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.title {
  text-align: center;
  color: #696969;
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-size: 1.5rem;
}

#fields {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}

.container {
  width: 400px;
}

.field {
  display: block;
  height: 300px;
  width: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 0 10px 0px #777;
  transition-duration: .3s;
  cursor: pointer;
}

.field:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 2px #888;
}

#field1 {
  background-image: url("../src/konverter.png");
}

#field2 {
  background-image: url("../src/formentrainer.png");
}

.field-title {
  text-align: center;
  color: #666;
  font-size: 1.5rem;
}

.field-desc {
  text-align: center;
  color: #777;
  font-size: 1rem;
}
