* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
}

body {
    font-family: "Milonga", sans-serif;
    /* font-size: 20px; */
    font-size: 3vh;

    display: flex;
    flex-direction: column;
    height: 110vh;

    margin: 0;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    row-gap: 5rem;

    background-image:
        linear-gradient(#111b 0%, #1113 25%),
        url("/images/skeleton_hand.png");

    background-size: cover;
    /* or contain, depending on your needs */
    background-position: center;
    background-repeat: no-repeat;

    flex: 1;

    text-shadow:
        0.2rem 0.2rem 0.2rem #ddd,
        -0.2rem -0.2rem 0.2rem #ddd;
}

#header-text {
    /* font-size: 40px; */
    font-size: 4vh;
    padding: 12px;
    align-items: center;
    text-align: center;

    margin-top: 10rem;

    /* flex: 0.4; */


}

.outline {
    /* border-width: 12px;
    border-style: solid;
    border-image: linear-gradient(90deg,rgba(180, 81, 210, 1) 0%, rgba(233, 117, 197, 1) 35%, rgba(95, 180, 206, 1) 50%, rgba(57, 185, 224, 1) 68%, rgba(42, 221, 224, 1) 100%) 1;
    
    border-radius: 100px; */

    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, rgba(180, 81, 210, 1) 0%, rgba(233, 117, 197, 1) 35%, rgba(95, 180, 206, 1) 50%, rgba(57, 185, 224, 1) 68%, rgba(42, 221, 224, 1) 100%) border-box;
    border-radius: 1rem;
    border: 0.3rem solid transparent;

    transition: ease-in-out 0.5s;

}

.navbar {
    background-color: #eeeeee;

    /* width: 100vw; */
    height: fit-content;
    /* inline-size: fit-content;
    block-size: fit-content; */

    border-bottom: 0.5rem;
    border-color: #111;
    border-style: hidden hidden solid hidden;

    flex-shrink: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 12px;

    position: sticky;
    top: 0;
}

.navbar-container {
    display: flex;
    align-items: center;

    width: 90vw;

    justify-content: space-between;
}

#navbar-logo {
    width: 5rem;
    height: 5rem;
}

.custom-button {
    padding: 0px 2rem;
    user-select: none;
    font-size: 2vh;
}

.custom-button:hover {
    background: linear-gradient(#ccc, #ccc) padding-box,
        linear-gradient(90deg, rgba(180, 81, 210, 1) 0%, rgba(233, 117, 197, 1) 35%, rgba(95, 180, 206, 1) 50%, rgba(57, 185, 224, 1) 68%, rgba(42, 221, 224, 1) 100%) border-box;
}

#username {
    height: 3rem;
    font-size: 2rem;
    font-family: "Milonga", sans-serif;
    width: 66vw;
    padding: 0 1rem;

    /* width: max-content; */
}

#upload-icon {
    width: 25vw;
    height: 25vw;
}

.submit {
    /* transition: ease-in-out 0.5s; */
    width: fit-content;
}

.submit:hover {
    background: linear-gradient(#ccc, #ccc) padding-box,
        linear-gradient(90deg, rgba(180, 81, 210, 1) 0%, rgba(233, 117, 197, 1) 35%, rgba(95, 180, 206, 1) 50%, rgba(57, 185, 224, 1) 68%, rgba(42, 221, 224, 1) 100%) border-box;

}

#select-file-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    /* size: 75vw; */
    width: 66vw;
    height: 50vw;

}

#submit-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* float: center; */

    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;

    width: fit-content;
}

/* #uploadForm {
    background-color: #0003;
    padding: 32px;
    border-radius: 8px;
} */