@import url('../game-2/css/animations.css');

body {
    font-family: 'Kumar One', cursive;
}
h1 {
    margin-bottom: 0;
}
p {
    text-align: center;
    color: #fff;
    animation: float 4s ease-in-out infinite;
}

img { 
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    transition: transform 0.3s ease;
}
img:hover {
    transform: scale(1.025);
}

.games {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.cowboys-vs-aliens,
.starfire-combat {
    margin: 0;
    width: 500px;
    height: auto;
}
.cowboys-vs-aliens img {
    width: 100%;
}
.starfire-combat img {
    width: 100%;
}