* {
    font-family: 'Roboto', Arial;
    text-align: center;
    justify-content: center;
}

div {
}

p {
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    display: inline-block;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 58px;
    padding: 10px 24px 10px 10px;
    border: 1px black solid;
    border-radius: 20px;
    background-color: white;
    box-shadow: 10px 10px 1px;
    transition: box-shadow 0.2s;
    outline: none;
    margin-bottom: 40px;
}

.button-img {
    width: 90px;
    margin: 0;
    vertical-align: top; 
    margin-top: -14px; 
    margin-right: -14px;
}

button:hover {
    box-shadow: 0px 0px 1px;
}

button:active {
    box-shadow: inset 2px 1px 1px;
}

section {
    height: 100vh;
}

.name-text {
    font-size: 140px;
    margin: 0;
    margin-top: 20px;
}   