@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppings', sans-serif;
}

body {
    background-image: url(images/arcade_carpet.png);
}

.container {
    max-width: 50%;
    margin: 2em auto;
    color: white;
}

.container > div {
    margin: 1em 0;
}

.logo {
    font-size: 1.5em;
    font-weight: 500;
}

.logo img {
    width: 100%;
}

.online {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
}

.online .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.online .card a {
    text-decoration: none;
}

.online .card button {
    display: flex;
    align-items: center;
    gap: 1em;
    height: 50px;
    width: 100%;
    margin-top: 1em;
    padding: .5em;
    background-color: #fe8a0d;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.25em;
    cursor: pointer;
}

.online .card button img {
    max-width: 50%;
    max-height: 100%;
}

.socials {
    margin-top: 2em !important;
}

.socials img{
    width: 50px;
    height: 50px;
    margin: 1em 1em;
    cursor: pointer;

}

@media screen and (max-width: 1000px) {
    .container {
        max-width: 75%;
    }

    .online {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 800px) {
    .container {
        max-width: 90%;
    }
}