body {
    background: #5F7FE8;
    color: white;
    font-family: Montserrat, sans-serif;
}

#main {
    background: linear-gradient(135deg, #5F7FE8 0%, #295491);
    min-height: 100vh;
    position: relative;
}

#main .background-grid {
    height: 100%;
    min-height: 100vh;
}

.background-border {
    position: relative;
    min-height: 100vh;
}

.background-border-top, .background-border-bottom {
    position: absolute;
    width: 100%;
}

.background-border-top {
    top: 0;
}

.background-border-bottom {
    bottom: 0;
}

.background-border-left, .background-border-right {
    position: absolute;
    min-height: 100vh;
    width: 40px;
}

.background-border-left {
    left: 0;
}

.background-border-right {
    right: 0;
}

#content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

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

#navbar {
    background: linear-gradient(135deg, rgb(94, 126, 232, 0.8) 0%, rgb(41, 84, 145, 0.8));
    color: white;
    padding: 0;
}

.content-container {
    color: white;
    padding: 4vw;
    margin: 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(94, 126, 232) 0%, rgb(41, 84, 145));
    box-shadow: 0 0 64px 0 rgb(0,0,0,0.2);
}

@media (max-width: 768px) {
    .content-container {
    padding: 8vw;
    }
}

.content-container h1 {
    font-weight: 800;
    text-transform: uppercase;
}

.content-container form {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.content-container .btn-group {
    width: 100%;
    margin-top: 16px;
}

.clear-button {
    background-color: #f94144;
    color: white;
    border-radius: 32px 0 0 32px;
    width: 50%;
}

.submit-button {
    background-color: #90be6d;
    color: white;
    border-radius: 0 32px 32px 0;
    width: 50%;
}

.copy-button {
    color: white;
    border-radius: 32px;
}

.copy-button-code {
    background-color: #90be6d;
}

.copy-button-link {
    background-color: #f48c06;
}

.form-button {
    font-size: 20px;
    height: 56px;
    font-weight: 800;
    transition: all 0.2s ease-in-out;
}

.form-button:hover {
    border: 4px solid #ffffff;
    transform: scale(1.1);
    color: white;
}

.form-button:active {
    transform: scale(1);
    color: white;
}

#upload-code-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#upload-code-container div h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
}

#root-title{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 4rem;
    text-align: center;
}

#image-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

