@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

@media (min-width: 768px) {
    .dropcontainer {
        height: 150px;
    }
}

@media (min-width: 992px) {
    .dropcontainer {
        height: 250px;
    }
}

@media (min-width: 1200px) {
    .dropcontainer {
        height: 400px;
    }
}

@media (min-width: 768px) {
    .backgroundHome {
        width: 750px;
    }
}

a {

    text-decoration: none;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale();
    color: #000;
}

.semiTransparent {
    background: rgba(218, 231, 231, 0.75);
    z-index: 999;
    border-radius: 10px;
    padding: 15px;
}

.what {
    text-align: center;
    font-weight: 600;
    font-size: xx-large;
    font-family: sans-serif;
    line-height: 50px;
    color: #770f85;
    filter: drop-shadow(5px 5px 20px #ececf1);
}

.where {

    font-weight: 500;
    font-size: x-large;
    font-family: sans-serif;
    line-height: 50px;
    color: #770f85;
    filter: drop-shadow(5px 5px 20px #ececf1);
}

.SolStuff {
    color: #ffffff;
    font-weight: 600;
    font-size: large;
}

.SolTxt {

    font-weight: 600;
    font-size: large;
}

.centerDiv {
    margin: auto;

}

.email {
    text-align: center;
    font-weight: normal;
    font-family: sans-serif;
    line-height: 50px;
    color: #726555;
}




/* Thumbnail */
.thumbnail {
    width: 80px;
    height: 80px;
    padding: 2px;
    border: 2px solid lightgray;
    border-radius: 3px;
    float: left;
}


.size {
    font-size: 12px;
}

/* spinner */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .1);
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}


.lds-dual-ring {
    display: inline-block;
    padding-top: 60px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 100px;
    height: 100px;
    margin: 5% auto;
    border-radius: 50%;
    border: 10px solid #746654;
    border-color: #746654 transparent #746654 transparent;
    animation: lds-dual-ring 1.2s linear infinite;

}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}