* {
    scrollbar-width: thin;
    scrollbar-color: white #262626;
}

::selection {
    background: white;
    color: #262626;
}

a {
    color: crimson;
}

a:hover {
    color: white;
}

body {
    background: black;
    background-image: url(Images/Backgrounds/fancyblackbackground.webp);
    font-family: 'Play', Tahoma, Verdana;
    color: white;
}

.evilcontainer {
    border: solid 22px;
    border-image: url(Images/Borders/miserabledolly_doily2.png) 24 fill round;
    width: fit-content;
    margin: auto;
}

#container {
    background: #262626;
    max-width: 1600px;
    display: grid;
    grid-template: 
        "art article"
        "art article"
        "footer footer" / auto 30%;
}

#artcontainer {
    justify-content: center;
    grid-area: art;
    padding-top: 20px;
    overflow-y: auto;
    height: 850px;
}

figure img {
    max-width: 330px;
    height: auto;
    width: 100%;
    display: block;
    margin: auto;
    border: solid 6px;
    border-image: url(Images/Borders/NJa4bp2.png) 8 fill round;
}

figure {
    margin: 0;
    max-width: 350px;
}

figcaption {
    font-size: 16px;
    text-align: center;
    margin-top: 10px
}

#artcont_ipad {
    display: none;
    justify-content: space-evenly;
    padding-top: 20px;
    padding-bottom: 10px;
}

.column, .row {
    gap: 8px;
}

h1 {
    font-family: 'Jersey 15', Tahoma, sans-serif;
    font-weight: 100;
    font-size: 60px;
    letter-spacing: 7px;
    margin: 7px 0
}

article {
    padding: 20px;
    grid-area: article;
    border-left: dashed 2px white;
}

.artbox {
    width: 200px;
    height: 200px;
    border: 2px solid;
    overflow: hidden;
    margin: 10px;
}

.artbox img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transition: ease 0.5s;
}

.artimg {
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transition: ease 0.5s;
}

.artbox img:hover {
    transform: scale(1.2);
}

hr {
    height: 30px;
    background: url(Images/Borders/music%200004.gif);
    background-repeat: repeat-x;
    border: none;
    background-size: 220px;
}

footer {
    text-align: center;
    grid-area: footer;
    padding: 15px;
    font-weight: 700;
    font-size: 19px;
    border-top: solid 2px;
}

@media only screen and (min-width: 965px) and (max-width: 1580px) {
        #container {
        max-width: 1200px;    
        grid-template: 
        "art article"
        "art article"
        "footer footer" / auto 25%;
    }
    
    figcaption {
        font-size: 16px;
    }
    
    figure {
        max-width: 270px;
    }
    
    figure img {
        max-width: 260px
    }
    
    #artcontainer {
        padding: 10px;
    }
}

@media only screen and (min-width: 651px) and (max-width: 964px) { 
        .evilcontainer {
        margin: -7px
    }
        #container {
        grid-template: 
            "article"
            "ipadart"
            "footer";
        text-align: center;
    }
    
    article {
        border-left: none;
        border-bottom: dashed 2px white
    }
    
    #artcontainer {
        display: none;
    }
    
    #artcont_ipad {
        height: max-content;
        display: flex;
        grid-area: ipadart;
        
    }
    
    figure {
        margin: 7px;
    }
}

@media only screen and (max-width: 650px) {
    #container {
        grid-template: 
            "article"
            "art"
            "footer";
        text-align: center;
    }
    
    .evilcontainer {
        margin: -7px
    }
    
    article {
        border-left: none;
        border-bottom: dashed 2px white
    }
    
    #artcontainer {
        flex-direction: column;
        margin: auto;
        height: max-content;
    }
}