@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Itim", cursive;
    color: #ebebd3;
}

body {
    background-color: #083d77;
}

.bg-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: opacity(0.5);
}

.title {
    display: flex;
    justify-content: center;
    background-color: #003cff;
    padding: 2%;
    border-radius: 20px;
    margin: 2% 20%;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box:hover .game-logo {
    border: #ebebd3 2px solid;
    transition: ease-in-out 0.2s;
    transform: scale(1.1);
    filter: blur(1px);
}

.logo-box:hover .game-title {
    transition: ease-in-out 0.2s;
    transform: translate(0%, -40%);
    opacity: 1;
}

.game-logo {
    width: 100px;
    height: 100px;
    border: #ebebd3 2px transparent;
}

.game-title {
    position: absolute;
    bottom: 0;
    opacity: 0;
    background-color: #ebebd3;
    color: black;
    transition: ease-in-out 0.2s;
    padding: 7px;
}
