@import url("fonts.css");
@import url("helpers.css");
@import url("base.css");
@import url("header.css");
@import url("filter.css");
@import url("images.css");
@import url("footer.css");
@import url("canvas.css");
@import url("myMemes.css");
/*#### LAYOUT ####*/

.header {
    border-bottom: 5px solid #463ab4;
    font-family: Open_Sans, sans-serif;
    text-transform: uppercase;
}

.btn {
    cursor: pointer;
}

.btn:active {
    position: relative;
    bottom: 2px;
}

.btn:hover {
    box-shadow: inset 2px 2px 5px 0px #000000
}

.show {
    transform: translateY(0);
}

.modal {
    display: none;
    position: absolute;
    box-shadow: 0px 0px 5px 0 #000;
    width: 50vh;
    height: 200px;
    background-color: rgb(231, 230, 230);
    border: 1px solid #858282;
}

.regular-btn {
    width: 98px;
    font-size: 1.3em;
    border: 2px solid black;
    background-color: transparent;
    color: black;
    padding: 2px;
    cursor: pointer;
    flex-wrap: wrap;
    font-family: Roboto, sans-serif, sans-serif;
    text-decoration: none;
}

.regular-btn:hover {
    background-color: #150e56;
    color: #fff;
}

.close-editor:hover, .close-myMemes:hover {
    background-color: rgb(253, 52, 52);
}

@media (min-width: 640px) {
    .container {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (min-width: 800px) {
    .container {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (min-width: 1000px) {
    .container {
        max-width: 1100px;
        margin: 0 auto;
    }
}