h1, h2, h3 {
    margin: 0;
    padding: 0;
}
body {
    background-color: rgb(211, 211, 211);
    font-family: 'IBM Plex Mono', monospace;
}

.main {
    width: clamp(28rem, 80%, 1980px);
    margin: auto;
    padding: 16px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 8px;
    margin-top: 1.5vh;
    min-height: 80vh;
}

.site-gallery {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    gap: 20px;
}

.site-gallery .site {
    width: 31%;
    border: 1px solid grey;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.site-gallery .site button {
    display: block;
    padding: 16px;
    background-color: #191964;
    color: white;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    font-weight: 800;
}

.site-gallery .site img {
    width: 100%;
}

.login-wrapper {
    width: 600px;
    margin: auto;
    margin-top: 5vh;
}

.login-wrapper h2 {
    background-color: #2c2c2c;
    color: white;
    padding: 1rem;
    box-sizing: border-box;
}

.login-wrapper {
    background-color: rgb(240, 240, 240);
}

.login-form {
    padding: 1rem;
}
.login-form label {
    font-weight: 800;
}
.login-form input {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding: 0.25rem;
}

.login-form > * {
    display: block;
}

.login-form button {
    border: none;
    padding: 0.5rem;
    background-color: #3636f1;
    font-weight: 800;
    text-align: center;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    cursor:pointer;
    min-width: 120px;
}

.site-controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0.5rem;
}

.site-controls button.cancel {
    background-color: #d01111;
}

.notification-message {
    position: sticky;
    top: 2.5vh;
}

.notification-message span {
    background-color: hsl(0, 0%, 94%);
    text-align: center;
    width: 100%;
    display: block;
    padding: 1.5rem;
    font-size: 1.25rem;
    box-sizing: border-box;
    font-weight: 800;
    border-bottom: 4px solid  hsl(0, 0%, 54%);
}

.notification-message span.success {
    color: hsl(147deg 96% 15%);
    background-color: hsl(147, 49%, 50%);
    border-bottom: 4px solid  hsl(147, 99%, 19%);
}

.kanban-status {
    max-width: 45%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.kanban-status span {
    /* display: flex;
    align-items: center; */
    padding: 1rem;
    color: black;
    background-color: hsl(0, 0%, 87%);
    border-radius: 4px;
    color: hsl(0, 0%, 27%);
    font-weight: 800;
}

.kanban-status span.in_progress {
    background-color: hsl(147deg 56% 56%);
    color: hsl(147deg 56% 26%);   
}

.kanban-status span.pen {
    background-color: hsl(0, 93%, 61%);
    color: hsl(0, 93%, 21%); 
}

.base-url {
    overflow-wrap: break-word;
}