
@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*{
    font-family: 'Exo', sans-serif;
    margin: 0px;
    padding: 0px;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #F37759;

    font-size: 60px;
}

h1{
    color: #F37759;
}

section{
    border-radius: 100px;
    height: 1200px;
    width: 500px;
    padding: 20px;
    padding-top: 50px;
    text-align: center;
    background-color: white;
}

a{
    font-size: 35px;
    text-decoration: none;
    color: #F37759;
    font-weight: bold;
}

a:hover{
    cursor: pointer;
}

input{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 40px;
  }


#boton{
    height: 200px;
    width: 200px;
    border-radius: 200px;
    background-color: #F37759;
    color: white;
    font-size: 35px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#boton:hover{
    cursor: pointer;
}

