body {
    display: inline-flex;
    height: 100vh;
    width: 100vw;
}

a:not(.nav-link) {
    color: rgb(107, 156, 255);
    transition: ease 0.1s;
}

a:not(.nav-link):hover {
    color: rgb(182, 206, 255);
}

#TopNav {
    position: fixed;
    top: 0;
    padding: 16px;
}

.nav-label {
    color: white;
    font-size: 24px;
}

.nav-link {
    color: white;
}

#dropZone {
    margin: auto;

    text-align: center;
    cursor: pointer;

    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow:
        inset 6px -6px 12px rgba(0, 0, 0, 0.2),
        inset -6px 6px 12px rgba(255, 255, 255, 0.05);
    padding: 20px;

    width: 1000px;
    max-width: calc(95% - 40px);

    transition: ease 0.3s;
}

#dropZone.dragover {
    background-color: rgba(0, 0, 0, 0.6);
}

#fileInput {
    display: none;
}

#instructions {
    margin-top: 40px;
    margin-bottom: 20px;
}

#windowsInstructionsTitle, #macInstructionsTitle {
    margin-top: 50px;
    margin-bottom: 20px;
}

.back-btn {
    margin-left: 29px;
}

.background-image {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-inline: auto;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -999;
}

@media (min-width: 1600px) and (min-height: 1000px) {
    #dropZone {
        scale: 1.5
    }
}