@import url('https://fonts.googleapis.com/css2?family=Alkatra&display=swap');

.App {
  text-align: center;
}

.App-header {
  background-color: #282c34;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Alkatra", sans-serif;
  font-size: 50px;
}
.container{
  width: 100%;
  height: 100%;
}
.bottomTouch{
  font-size: calc(10px + 2vmin);
  display: inline-flex;
  background: white;
  width: 100px;
  height: 300px;
  justify-content: center;
  align-items: end;
  border: 1px solid #000;
  color: black;
  padding-bottom: 10px;
  transition: .5s;
}
.bottomTouch:nth-child(1){
  border-radius: 20px 0 0 20px;
}
.bottomTouch:nth-child(12){
   border-radius: 0 20px 20px 0;
 }
.upperTouch{
  font-size: calc(10px + 2vmin);
  display: inline-flex;
  position: absolute;
  z-index: 2;
  background: black;
  width: 75px;
  height: 225px;
  margin-bottom: 75px;
  margin-left: calc(-75px/2);
  justify-content: center;
  align-items: end;
  border: 1px solid #000;
  color: white;
  padding-bottom: 10px;
  transition: .5s;
  border-radius: 0 0 20px 20px;
}