body {
    background: snow;
    overflow: hidden;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

h1 {
    font-size: 64pt;
    font-weight: bold;
    white-space: nowrap;
    height: 70px;
    margin-top: -5px
}

#centralizer {
    display: inline-block;
}

/* #flexBox {
    position: relative;
    width: fit-content;
    transform-origin: top center;
    -moz-transform-origin: top center;
} */

#controlsBox {
    position: relative;
}

#name_input {
    position: absolute;

    top: 41px;
    left: 50px;
    width: 668px;
    
    color: transparent;
    font-family: 'EB Garamond', serif;
    font-size: 52px;
    
    background: transparent;
    border: none;
}

#description_textarea {
    position: absolute;

    top: 851px;
    left: 159px;
    width: 555px;
    height: 145px;
    resize: none;
    
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    color: rgb(0, 0, 0);
    
    background: transparent;
    border: none;
    overflow: hidden;
}

#capacity_input {
    position: absolute;

    top: 950px;
    left: 659px;
    width: 65px;
    height: 65px;
    
    color: white;
    color: transparent;
    font-family: 'EB Garamond', serif;
    font-weight: bold;
    font-size: 48px;
    text-align: center;
    background: transparent;
    border: none;

    z-index: 4;
}

#author_input {
    position: absolute;

    top: 1005px;
    left: 157px;
    width: 520px;
    
    color: white;
    color: transparent;
    font-family: 'EB Garamond', serif;
    font-weight: bold;
    font-size: 22px;
    
    background: transparent;
    border: none;
}

#dragArea_div {
    position: absolute;

    top: 120px;
    left: 160px;
    width: 552px;
    height: 715px;
        
    border: none;
    cursor: cell;
}

#dropArea_div {
    position: absolute;
    width: 100%;
    height: 100%;
    
}

#upload_Placeholder{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width : 1079px) { 
    #upload_Placeholder {
        visibility: hidden;
    } 
}

#draggableImage {
    position: absolute;
    
    opacity: 0.7;
    visibility: hidden;

    z-index: 0;
}

#dragArea_div.highlighted {
    background: rgba(8, 129, 18, 0.705);
}

#dragArea_div.uploaded {
    cursor: grab;
}

#dragArea_div.uploaded > #upload_Placeholder {
    visibility: hidden;
}

#clanName_div {
    position: absolute;
    top: 260px;
    left: 30px;

    padding: 4px 8px;

    border: solid 2.5px grey;
    background-color: F1EAFE;
    color: black;

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 24pt;

    opacity: 0;
    transition: opacity 1s;
}

#clanName_div.fading {
    opacity: 1;
    transition: opacity 0.25s;
}

#upload_button {
    background: rgb(65, 140, 225);
    color: white;

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 36pt;
    font-weight: bold;

    width: 100%;
    height: 110px;
    
    margin-bottom: 10px;
    cursor: pointer;
}

#download_button {
    background: #008617;
    color: white;

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 36pt;
    font-weight: bold;

    width: 100%;
    height: 110px;
    
    margin-top: 10px;
    cursor: pointer;
}

#changeClan_button {
    position: absolute;

    width: 200px;
    height: 120px;
    top: 140px;
    left: 20px;
}

#disci_div {
    position: absolute;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: center;

    width: 99px;
    top: 270px;
    bottom: 120px;
    left: 31px;

    /* background-color: aqua; */
}

#disci_div > div {
    width: 65px;
    height: 65px;
    margin: 7px;
    
    cursor: pointer;
}

#disci_div > div > img {
    width: 100%;
    height: 100%;
}

#changeClanDrop_button {
    opacity: 0;
}

.dropbtn {
    width: 100%;
    height: 100%;

    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;

    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    display: none;
    
    overflow: auto;    
    
    background-color: snow;
    border: solid 2.5px grey;
    z-index: 1;
}

.dropdown-content#clanlist_div {
    width: 680px;
    max-height: 790px;
}

.dropdown-content#discilist_div {
    bottom: 65px;
    width: 540px;
    max-height: 490px;
}

.dropdown-content a {
    display: flex;
    height: 90px;

    align-items: center;
    padding-left: 10px;

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 36pt;
    color: black;
    text-decoration: none;
}

#discilist_div a {
    height: 70px;
}

.dropdown-content a img {
    position: relative;
    height: 80%;
    padding-right: 15px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.grabbing {
    cursor: grabbing;
}

#loadBlocker {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: snow;
    z-index: 10;
    font-size: 3rem;
}