.button {
  width: 300px;
  height: 300px;
  border: none;
  margin: auto;
  border-radius: 72px;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow:  27px 27px 54px #e0e0e0, 
               -27px -27px 54px #ffffff;
  color: black;

  transition: box-shadow 1s;
}

.button-text {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.button:active {
  border-radius: 72px;
  background: #ffffff;
  box-shadow: inset 27px 27px 54px #e0e0e0, 
              inset -27px -27px 54px #ffffff;
}

.red {
  color: #c21300;
}

.button-container {
  display: flex;
  flex-direction: row;
  margin: auto;
  width: 90vw;
}

.logo {
  font-size: 64px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: italic;
  margin: auto;
  margin-top: 20px;
}

.logo-img {
  margin-top: 20px;
  margin-bottom: 15px;
  margin-right: auto;
  margin-left: auto;
}

.wipe-button {
  margin-top: 50px;
  margin-left: auto;
  margin-top: auto;
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

html {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}

.lock-addon {
  margin: auto;
}

.lock-container {
  transform: scale(3);
}

.card {
  margin: auto;
  display: flex;
  width: 100%;
  max-width: 320px;
  height: 300px;
  padding: 20px;
  border-color: lightgray;
  background-color: white;
  text-align: center;
  border-width: 1px;
  border-radius: 4px 4px 4px 4px;
  border-style: solid;
  font-family: 'Roboto', sans-serif;
}

.card .text {
  margin: auto;
  font-size: 36px;
  font-weight: bold;
}

.body {
  background-color: #e6f9ff;
}