* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #142333;
  
}

.container {
  margin-top: 15rem;
}

h1 {
  margin-bottom: 3rem;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 3rem; 
}

button {
  margin-bottom: 1.5rem;
  width: 15rem;
  padding: 1.5rem;

  border:none;
  border-radius: .4rem;

  background-color: #1d3249;
  
  font-size: 1.4rem;
  color: white;

  transition: .3s;
}

button:hover {
  background-color: #253f5a;
}

i {
  font-size: 2rem;
  margin-right: 0.5rem;
}

