

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: black;
}

header, footer {
    background-color: #0f0f0f;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
}

header {
    padding-top: 20px;
    padding-bottom: 30px;
}

footer {
    padding-top: 50px;
    padding-bottom: 20px;
}

main {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 5%;
    padding-right: 5%;
}

h1, h2 {
    color: #ffc010;
    margin-top: 40px;
    margin-bottom: 20px;
}

button {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: white;
    color: black;
    cursor: pointer;
    padding: 8px;
    margin-top: 20px;
    margin-bottom: 40px;
    display: block;
}

button:hover {
    background-color: black;
    color: white;
}

p {
    margin-bottom: 10px;
}

a {
    color: #ffc010;
    text-decoration: none;
    margin-bottom: 10px;
}

ul {
    list-style: inside;
}

/* Classes */
.game {
    margin-bottom: 120px;
    background-color: #1a1a1a;
    border-radius: 15px;
    padding-bottom: 40px;
}

.game > a {
    text-decoration: underline;
}

.game > h2, .game > a {
    margin-left: 10px;
}

.game-title {
    color: white;
    margin-top: 60px;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
}

.iframe-container > iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.contact > a {
    margin-bottom: 0;
}

.contact > img {
    height: 20px;
    margin-right: 10px;
}

.social-media {
    margin-bottom: 90px;
}

.social-media > a {
    display: inline;
}

.social-media > a > img {
    height: 15px;
    margin: 10px;
}

.btn-scroll-to-top {
    margin-top: 100px;
    margin-bottom: 0;
}

/* Tablet */
@media only screen and (min-width: 600px) {
    header, footer, main {
        padding-left: 15%;
        padding-right: 15%;
    }
}

/* Desktop */
@media only screen and (min-width: 768px) {
    header, footer, main {
        padding-left: 25%;
        padding-right: 25%;
    }
}