* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1d1c1b;
}

header {
    min-height: 20vh;
    /* background:linear-gradient(rgba(0,0,0,0.2), #303030),url(/assets/img/Raid/Raid2Back.jpg); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
}

.Simulators {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px;
}

.Simulators a {
    text-decoration: none;
}

.Cards {
    width: 300px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.418);
    padding: 200px 100px;
    cursor: pointer;
}

.Cards h2 {
    opacity: 0;
    color: white;
    transition: all 300ms ease-in-out;
}

.Cards:hover h2 {
    opacity: 1;
}

@media only screen and (max-width: 1100px) {
    .Cards h2 {
        opacity: 1;
    }
}