@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

main{
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
      
  }
  
  .container{
    display: flex;
    flex-direction: column;
    background: #2b878c;
    width: 385px;
    height: 600px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 1px;
    box-shadow: 0 0 2px #000;
  }
  
  .title{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font:bold 2.5rem 'Montserrat' ;
    border-bottom: solid 1px rgb(255, 255, 255);
    margin-bottom: 20px;
  }
  
  .input {
    display: flex;
    width: 300px;
    height: 20px;
    justify-content: space-between;
    align-items: center;
  }
  .input input {
    width: 200px;
    height: 35px;
    border-radius: 1px;
    border:none;
    outline: 0;
    font: bold 1.5rem 'Roboto';
    text-align: center;
  }
  
  .input label {
    font: bold 1.5rem 'Montserrat';
  }
  
  button{
    width: 300px;
    height: 40px;
    font: bold 1.2rem 'Montserrat';
    background: #000;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    outline: none;
    border-radius: 1px;
    cursor: pointer;
  }
  
  .result{
    display: flex;
    align-items: center;
    width: 330px;
    height: 150px;
    border-radius: 1px;
    font:1.5rem 'Roboto';
    box-shadow: 0px 0px 10px black;
    background: #000;
    color: rgb(255,255,255);
    padding: 20px;
    box-sizing: border-box;
    user-select: none;
  }