/* CSS Styling */

* {
  box-sizing: border-box;
}

body * {
font-family: 'Work Sans', sans-serif;
}

body {
  background: url("https://source.unsplash.com/BtbjCFUvBXs/1920x1080") no-repeat
    center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  display: flex;
  /* font-family: 'Sofia' !important; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 100vh;
}

h2 {
  margin: 10px 0 20px;
  text-align: center;
}

.container-box {
  background: rgb(52, 58, 64);
  border-radius: 1rem;
  box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.2);
  padding: 20px;
  width: 350px;
  max-width: 100%;
  color: lightgray;
}

textarea {
  background-color: Gainsboro;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 12px 10px;
  height: 50px;
  width: 100%;
}

label {
  text-align: left;
  margin-left: 15px;
}

input[type="checkbox"] {
  margin-right: 15px;
}

input[type="number"] {
  margin-right: 15px;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  bottom: 100px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.btn {
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 8px 12px;
}

.btn-large {
  display: block;
  width: 100%;
  margin: 5px;
}

.setting {
  justify-content: space-between;
  align-items: flex-start;
  margin: 15px 0;
}

.row {
  justify-content: space-between;
  margin: 10px;
}

@media screen and (max-width: 400px) {
  .container-box {
    font-size: 14px;
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
