
/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* CUSTOM PROPERTIES
/*******************************************/



/******************************************
/* TYPOGRAPHY
/*******************************************/



/******************************************
/* LAYOUT
/*******************************************/

body {
  background: linear-gradient(rgb(255,32,104), rgb(249,173,109));
  background-repeat: no-repeat;
  background-size: 100vw 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;

  font-family: 'Roboto', sans-serif;
  color: rgb(223, 223, 223);
}

h1 {
  font-size: 50px;
}

button {
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  padding: 25px;
}

button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.container-item {
  display: flex;
  justify-content: space-between;
}

.container {
  background-color: rgba(255, 255, 255, 0.157);
  border: solid 2px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 300px;
  height: 450px;
  padding: 0 25px 25px 25px;
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.containerTwo {
  background-color: rgba(255, 255, 255, 0.157);
  border: solid 2px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  width: 300px;
  text-align: center;
  margin-top: 25px;
  color: white;
}


/******************************************
/* ADDITIONAL STYLES
/*******************************************/
