body {
    font-family: Tahoma;
    background-color: #EDF2F3;
}
button {
    background-color: #1F3541;
    color: #EDF2F3;
    border: none;
    padding: 1rem 3rem;
    border-radius: 10px;
    font-size: 3rem;
    font-weight: 600;
    cursor: pointer;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.box {
    width: 35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #5289B5;
    padding: 1rem;
    border-radius: 1rem;
}   
.name {
    font-size: 5rem;
    text-shadow: 3px 3px 5px #5289B5;
    margin: 1rem 0;
    color: #1F3541;
}
#result {
    height: 2rem;
    font-weight: bold;
    font-size: 1.25rem;
    width: 80%;
    padding-left: 1rem;
    border-radius: 5px;
    color: #1F3541;
    border: 4px solid #1F3541;
    border-radius: 1rem;
}
