body {
    background-color: pink;
    font-family: 'Tenor Sans';
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container {
    background-color: white;
    padding: 20px;
    margin: 20px 0px;
}

.center {
    text-align: center;
}

h1 {
    font-family: 'Irish Grover';
}

p, .nameLabel {
    font-weight: bold;
}

input {
    font-size: 18px;
}

input[type=text] {
    border: none;
    outline: none;
    border-bottom: 1px solid black;
}

input[type=button] {
    color: hotpink;
    background-color: white;
    border: 1px solid hotpink;
    border-radius: 5px;
    margin-top: 15px;
    padding: 5px;
    width: 100%;
    cursor: pointer;
    transition: 0.4s;
}

input[type=button]:hover {
    color: white;
    background-color: pink;
    border: 1px solid pink;
}

