* {
    margin: 0;
    padding: 0;
}

.a {
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin: 10px;
}

.header-center {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 68, 0, 0.815);
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.5));
}

.site-header {
    padding: 0;
    margin: 0;
}

.site-main {
    padding: 20px;
    min-height: 100vh;
}

.site-footer {
    justify-content: center;
    align-items: center;
    background-color: rgba(138, 138, 138, 0.815);
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.5));
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.game-div {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: left;
    background-color: antiquewhite;
    border-radius: 10px;
    margin-inline: 10px;
    padding-inline-start: 10px;

}

.game-icon {
    justify-self: center;
    align-self: center;
}

.game-name {
    font-size: 35pt;
    color: black;
    font: bolder;
    font-family: sans-serif;
}

.download-btn {
    width: 150px;
    height: 40px;
    border-radius: 10px;
    border-width: 0px;
    background: rgb(79, 173, 255);
    color: white;
    font-size: 10pt;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}