* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  background: linear-gradient(120deg, rgba(238,174,202,1) 0%, rgba(229,255,143,1) 100%);
  overflow: hidden;
  height: 100vh;
}

.base {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 50%;
  top: 50%;
  width: fit-content;
  transform: translate(-50%, -50%);
  padding: .8em 1em;
  width: 349.5px;
  box-shadow: 10px 10px 15px rgba(0,0,0,0.5);
  border-radius: 10px;
  background: rgb(30,30,30);
}


.title {
  color: white;
  margin: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: .5em;
}

.bttnsaf {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
}

.after {
  display: none;
  font-size: 18px;
  width: fit-content;
  background-color: #0099ff;
  border: 2px solid #0050ff;
  padding: .2rem .5rem;
  margin-bottom: .5rem;
  cursor: pointer;
}



h1 {
  text-align: center;
  width: fit-content;
  padding: .3em .8em;
  border-radius: .4em;
}

.table {
  text-align: center;
  width: fit-content;
  padding: .3em .8em;
  border-radius: .4em;
}

.diffs {
  text-align: center;
  list-style-type: none
}

.bttn {
  margin: .5em 0;
  border: .1em solid white;
  color: white;
  background-color: rgba(0,0,0,1);
  font-size: 2em;
  padding: .2em .5em;
  border-radius: .4em;
}

.bttn:hover {
  background-color: white;
  color: black;
  border-color: black;
  cursor: pointer;
  transition: .15s;
}

.bttn:active {
  padding: .4em .7em;
  margin: .3em 0;
}

.img {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

img {
  position: absolute;
  width: 10%;
  top: 50%;
  left: 50%;
}

@media (max-width: 450px) {
  img {
    width: 20%;
  }
}
