#profile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15% 5% 20% 5%;
    background-color: white;
    display: flex;
    align-items: stretch;
    gap: 10px 10px;
    flex-direction: column;
    justify-content: flex-start;
}

#profile #title {
    grid-area: title;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

#profile .content {
    overflow-y: scroll;
}

#profile h3{
    margin-top: 3rem;
    margin-bottom: 1rem;
}

#profile label{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#profile label input{
    width: 60%;
}

#profile .full-button{
    margin-top: 1rem;
}