* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(171,221,230);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1 {
  text-align: center;
  margin: 10px;
  padding-top: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 1000;
  font-size: 400%;
  color: black;
}
.exp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.img {
  width: 170px;
  height: 200px;
}


.box {
  background-color: rgb(191, 214, 255);
  box-sizing: border-box;
  border: 2px solid black;
  width: 500px;
  height: 800px;
  margin: 10px 20px;
  color: black;
  text-align: center;
  font-size: 22px;
  padding: 30px 10px;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  box-shadow: 5px 5px 15px grey;
  
}

.box:hover {
  transform: scale(1.03);
  transition: all 0.6s ease;
}
