@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
* {
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  font-family: 'Roboto', sans-serif;
  background-color: #202A44;
 }

.wrapper {
  display: flex;
  flex-direction:column;
  align-items:center;
  /* padding: 5em 2em; */
  margin: 0 auto;
 }


#h1 {
  font-size: 5em;
  font-weight: bold;
  text-align:center;
  color: white;
}

label {
  font-size: 2em;
  padding: 1em;
  margin: 0;  
  color: white;
}

input {
  padding: 10px;
  border:0;
  
  border-radius:30px;
  margin:0;
  font-size: 6em;
  width: 30%;
  font-weight: bold;
  text-align: center;
  outline: 0;
}

button {
  padding: 10px;
  border: 0;
  margin:2em;
  font-size: 2em;
  border-radius: 10px;
  width: 30%;
  font-weight: bold;
  background-color:0000;
  outline: 0;
}

#result{
  padding: 10px;
  border: 0;
  margin:0;
  font-size: 6em;
  border-radius: 50px;
  width: 30%;
  font-weight: bold;
  text-align: center;
  color: white;
}

@media (max-width: 910px) {
  #h1 {
    font-size: 5em;
   }
  button {
    font-size: 1em;
  }
  
  input {
    width: 60%;
    font-size: 4em;
  }
  
  #result {
    font-size: 4em;
  }
  
}


#article {
  color:white;
  padding: 0 10% 1% 10%;
}

a {
  color: yellow;
}