* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: lightblue;
    font-family: monospace;
}

.head {
    background-color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100px;
    width: 100%;
}

.head img {
    align-self: center;
    width: 2rem;
    height: 2px;
    object-fit: cover;
    width: 100px;
    margin-bottom: 19px;
}

.head p {
    font-size: 1.25rem;
    letter-spacing: 0.35em;
    color: #2b2b2b;
    font-weight: 600;
}

.main {
    background-color: aquamarine;
    width: 100%;
    height: 20rem;
    padding-inline-start: 2rem;
    padding-block-start: 3rem;
}


/* Styling for the background overlay */
.overlay {
    display: none;
    /* Keeps it hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dimmed background */
    justify-content: center;
    align-items: center;
}

/* Styling for the actual pop-up box */
.popup-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.commit-box {
    text-align: left;
}

.commit-box label {
    display: block;
    margin: 1.25rem 0 0.4rem;
}

.commit-box input[type="text"] {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #9aa;
    font: inherit;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-actions button {
    margin-top: 0;
    border: 1px solid #2b2b2b;
}

.form-status {
    min-height: 1.2em;
    margin-top: 1rem;
}

/* Optional styling for buttons */
button {
    padding: 7px 20px;
    margin-top: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: white;
}

.foot {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50px, 0px);
}

#commit {
    margin-left: 1rem;
}