@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

body {
    background-color: LemonChiffon;
    margin: 0;
}

body > div:nth-of-type(1) > div:nth-of-type(2) {
    width: 500px;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

body > div:nth-of-type(1) > div:nth-of-type(3) {
    text-align: center;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}

body > div:nth-of-type(1) > div:nth-of-type(4) p {
    text-align: center;
    font-family: Roboto, Arial;
    font-size: 17px;
    color: #353535;
}

body > div:nth-of-type(1) > div:nth-of-type(5) p {
    text-align: center;
    font-family: Roboto, Arial;
    font-size: 30px;
    color: #353535;
}

h1 {
    text-align: center;
    font-family: Roboto, Arial;
    font-size: 60px;
    color: #353535;
}

.button {
    width: 350px;
    height: 60px;
    line-height: 30px;
    border-radius: 30px;
    background-color: brown;
    font-family: Roboto, Arial;
    font-weight: normal;
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
    vertical-align: middle;
    border: 0px solid brown;
}

.button:hover {
    background-color: #353535;
    color: yellow;
    border: 2px solid #353535;
}