:root {
    --accent-1: #4CAF50;
    --secondary-color: #cbc5ce;
    --text-color: #e2e2e2;
    --background: #1a1a1a;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0 0;
    padding: 0;
    height: 100dvh;
    width: 100dvw;

}

.drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
    margin: 20px auto;
    width: 300px;
    background-color: #f9f9f9;
}

.help-icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3rem;
    background: var(--accent-1);
    color: var(--text-color);
    font-size: 2rem;
    border-radius: 50%;
}

.help-icon button { 
    all: unset;
    cursor: pointer;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background:  var(--background);
}

.helppanel {
    display: none;
    visibility: hidden;
    background: white;
    flex-direction: column;
    position: fixed;
    bottom: 6em;
    right: 2rem;
    height: 75vh;
    width: 30vw;
    animation: slideUp 0.3s ease-in-out;

}

.helppanel span {
    color: var(--accent-1);
    font-size: 2rem;
    margin-top: 10vh;
}

.help-icon{
    overflow: hidden;
}

.thismightsoundstupid{
    animation: blowUp 750ms ease;
    font-weight: bolder;

}

@keyframes slideUp {
    0% {
        transform: translateY(150vh);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes blowUp {
    0% {
        transform: scale(1);
        color: var(--text-color);

    }
    100% {
        transform: scale(120);
    }
}