canvas {
    border: 2px solid;
    color: #111;
}

body {
    margin: 0;
    padding: 20px;
	font-family: Courier;
	background-color: #ffffff;
}

a {
    text-decoration: none;
}

.title-section {
    padding-bottom: 20px;
    font-size: 37px;
    letter-spacing:2px;
    font-weight: Bold;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
}

.box {
    position: relative;
    padding: 0px;
    background-color: #f2f2f2;
}

.flyby {
    padding-left:20px;
    letter-spacing:2px;
}
    
.kirby {
    content:url(../../images/games/kirby-pink.gif);
    position:relative;
    width:60px;
    height:60px;
    transform: translateY(10px);
}

.image {
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.description {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 16px;
    color: black;
    font-weight: 550;
}

.small-image {
    width: 88px;
    height: 31px;
}

.text {
    font-size: 14px;
    padding-top: 2px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 2px;
    filter: opacity(80%);
    background-color: yellow;
}

.doom-text {
    padding-top: 2px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 2px;
    filter: opacity(80%);
    background-color: #CFB24D;
}
    
.wario {
    position: absolute;
    top: 10px;
    text-align: center;
    left:10%;
    right:10%;
    font-size: 20px;
    color: black;
    text-shadow: 1px 0 white, 0 -1px white, -1px 0 white, 0 1px white;
    background-color: black;
    border: 1px solid white;
}

.alternating {
    animation-name: alternating-text;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    }

@keyframes alternating-text {
90% {
    display: none;
    }
}
        
.mark-subtitle {
    background-color: #f58237 ;
    padding-top: 2px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 2px;
}

.mark-title {
    background-color: #d939a6;
    padding-left:6px;
    padding-right:6px;
    padding-top: 2px;
    padding-bottom: 2px;
}
    
.container {
    position: relative;
}

.trippy-text {
    position: absolute;
    top: 0;
    color: black;
    mix-blend-mode: difference;
        
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0px;
    text-shadow: 2px 0 white, 0 -2px white, -2px 0 white, 0 2px white;
}
  

i {
    font-size: 12px;
}






