body {
    background-color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#appicon {
    width: 100px;
    height: 100px;
    margin: 50px;
    display: block;
}

.container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: #d0d0d0;
    border-radius: 25px;
    padding: 50px;
    max-width: 90%;
}

.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    background-color: #d0d0d0;
    border-radius: 25px;
    padding: 50px;
    margin: 20px;
}

.menu a{
    padding: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.container p span {
    font-weight: bold;
}

form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

form input {
    margin: 2px 10px 10px 0px;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #ff6666;
    border: 0px;
    padding: 10px;
    color: white;
    font-weight: bold;
}

form label {
    align-self: flex-start;
    font-size: small;
    font-weight: bold;
}