@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,400;0,700;1,400;1,700&display=swap');

body {
    margin: 0;
    background-color: #313131;
}

* {
    font-family: Jost, Roboto, Arial, sans-serif;
    color: #ffffff;
    text-align: center;
}

a {
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    text-shadow: 0 0 1rem gold;
    color: gold;
}

.header {
    background: url(./images/bg1.png) no-repeat center center fixed;
    background-size: cover;
    width: 100%;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-left: none;
    border-right: none;
    position: relative;
    padding: 0.5em 1em;
    box-sizing: border-box;
    text-align: center;
    color: white;
    text-shadow: 0 0 1rem white;    
    font-weight: normal;
}

.intro {
    font-size: 8rem;
    line-height: 90%;
    font-weight: 200;

    height: 36rem;
    display: flex;
    align-items: center;
    justify-content: center;


}

.intro img {
    position: absolute;
    opacity: 0.5;
    height: 90%;
}

main {
    font-size: 1.2rem;
    margin: 3em 0;
}

main .platforms {
    padding: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

main .platforms li {
    padding: 1rem;
    background-color: #1f1f1f;
    border-radius: 1rem;
    display: flex;
    align-items: center;
}

main .platforms li img {
    height: 32px;
}

@media screen and (max-width: 600px) {
    .intro {
        height: 28rem;
    }
}

.gallery {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1em;
    gap: 1em;
    justify-content: center;
}

.gallery-item {
    text-align: center;
    max-width: 560px;
    width: 100%;
    height: 315px;
    border-radius: 20px
}

img.gallery-item {
    height:100%;
}

a.gallery-item {
    background-color: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}