@import url("https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&display=swap");
body {
    margin: 0px;
    font-family: Comic Relief;
    background-image: url("additional\ stuffs/backpoo.png");
    background-attachment: fixed;
    background-position: center;
    color: white;
}
header {
    display: flex;
    border-bottom: 4px solid #00000033;
    border-top: 5px solid #ffffff55;
    justify-content: center;
    background-color: #ccccff;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 10px;
    margin-top: 20px;
    padding-bottom: 10px;
    border-radius: 30px;
    height: 45px;
    font-size: 30px;
    border-top: none;
    position: relative;
}
header a {
    padding-left: 10px;
    padding-right: 10px;
    color: #0000ff;
    text-decoration: none;
}
header a:hover {
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    font-weight: 700;
}
.primary {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
h1 {
    font-size: 5em;
    margin: 20px;
    color: #ffffff;
}
section {
    padding: 20px;
    border-top: 5px solid #ffffff88;
    color: #000000;
    margin: 30px;
    border-radius: 10px;
    border-bottom: 5px solid #00000044;

    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}
section:nth-of-type(2n + 1) {
    background: linear-gradient(180deg, #dfccff 0%, #cfb3ff 100%);
}
section:nth-of-type(2n) {
    background: linear-gradient(180deg, #ccccff 0%, #b3b3ff 100%);
}
p {
    text-align: justify;
}
hr {
    border: 0;
    border-top: 1px solid #000000;
    margin: 16px 0;
}
footer {
    text-align: center;
    margin-bottom: 20px;
}

.about {
    display: flex;
    gap: 10px;
    align-items: stretch; /* Forces children to be the same height */
    height: auto;
}
.about .text {
    flex: 1 1 0;
}
.about img.sona {
    flex: 0 0 1;
    height: 24.177em;
    width: 24.177em;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

[href] {
    cursor: pointer;
}

.gamelist {
    display: flex;
    gap: 20px;
    height: 15%;
    margin-left: 2%;
    margin-right: 2%;
    align-items: stretch;
    margin-bottom: 1%;
    margin-top: 1%;
}

.game {
    flex: 1;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    transition: flex 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game:hover {
    flex: 1.1;
}

.split {
    display: flex;
    gap: 20px;
}

.split * {
    flex: 1;
}

/* (removed invalid selector `img .sona`) */

button {
    border: none;
    color: white;
    background: #a06ff6;
    border-bottom: 3px solid #0003;
    border-radius: 20px;
    font-family: Comic Relief;
}

button:active {
    border: none;
    color: white;
    background: #ccafff;
    border-bottom: 1px solid #0003;
    border-radius: 20px;
}

button:disabled {
    border: none;
    color: black;
    background: #969696;
    border-top: 1px solid #0003;
    border-radius: 20px;
}

button:disabled:active {
    border: none;
    color: black;
    background: #747474;
    border-top: 2px solid #0003;
    border-radius: 20px;
}

.socials-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
}

.socials-list img {
    width: 32px;
    height: 32px;
}

.socials-list img[disabled] {
    opacity: 0.3;
}