html {
    background-color: #0E152F;
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
}

@font-face {
    font-family: "Comic_Sans";
    src: local("Comic Sans MS"), url("Comic Sans MS.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: Comic_Sans;
}

.Top_Line {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #21D4E6 0%, #4C3C81 40%, #4C3C81 60%, #21D4E6 100%);
}


.Column {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 10px;
    
    align-items: center;

    width: calc(100% - 20px);
    /*height: calc(100% - 80px);*/
    overflow: auto;
}

.Card {
    position: relative;
    background: #000;
    border-radius: 15px;
    padding: 10px;
    /*width: 100%;
    margin: 6px;*/
    aspect-ratio: 1 / 1;
}

.Card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.Card h2 {
   margin: 5px 0 0 0; 
   text-align: center;
   color: #fff;
}


.Left {
    background: linear-gradient(to right bottom, #1CDFEB 0%, #654FAA 60%, #4D3C81 100%);;
}

.Right {
    background: linear-gradient(to right top, #4D3C81 0%, #654FAA 40%, #1CDFEB 100%);;
}



/*.Card:before {
    content: '';
    display: block;
    background: #000;
    padding-top: 100%;
}*/