* {
    margin: 0;
    padding: 0;
    font-family: Calibri, Geneva;
}
body {
    background-color: rgb(243, 243, 243);
    height: 100vh;
}
nav {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
    border-bottom: 2px solid black;
}
#navbar {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 1rem;
}
#navbar a {
    padding: 0.5rem;
    border-radius: 12px;
    height: 1.5rem;
    font-size: 1.2rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(50, 138, 197);
    align-content: center;
}
#navbar a:hover {
    background-color: rgb(57, 155, 221);
}
#navbar a:first-child {
    margin-left: 1rem;
}
#profile {
    height: 100%;
    align-content: center;
}
#profilePicture {
    height: 3rem;
    margin: 0 1rem;
    border-radius: 25px;
}
#message {
    width: 100%;
    text-align: right;
}
form {
    width: 320px;
    justify-self: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.formItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.formItem label {
    width: 100%;
    text-align: right;
    margin-right: 10px;
}

.formItem input {
    width: 200px;
    padding: 5px;
}
#submit {
    width: 100px;
    align-self: flex-end;
}
