/* base */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: monospace;
    font-weight: 700;
}
/* Make ALL text white because this site is fucking bipolar and cant decide*/
* {
    color: white;
    box-sizing: border-box;
}

/* big */
main {
    width: 900px;
    height: 900px;
    background: black;
    border: 4px solid white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main {
    /* distortion */
    filter: url(#filter);
}
p, span, h1, h2, h3, h4, h5, h6, li, a {

}

.navbar {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
}

.navbar a {
    text-decoration: none;
    font-size: 18px;
}

.navbar a:hover {
    text-decoration: underline;
}

.split {
    flex: 1;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.split h1 {
    font-size: 28px;
    margin-bottom: 16px;
}

.split p {
    font-size: 16px;
}

.about-block {
    flex: 1;
    border: 2px solid white;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.about-block h2 {
    font-size: 28px;
}

.about-block p {
    font-size: 16px;
}

/* help me */
.about-block img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 2px solid white;
}

/* push image to RIGHT (make it right..)*/
.about-block.right img {
    margin-left: auto;
}


/* fuckign android i guess */
@media (max-width: 850px) {
    main {
        width: 95%;
        height: auto;
    }

    .about-block,
    .about-block.right {
        flex-direction: column;
        text-align: center;
    }
}

/* sidekicks : ) */

/* Make Sidekicks page wider so 2 boxes fit (change this later? might do it when i bother doing proper scaling but for now me dont cares */
/* no goodbye */


/* sidekicks 2 per row */
.sidekicks-container {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 20px;
    justify-content: center;
}


/* Individual 400x200 card */
.sidekick-box {
    width: 400px;
    height: 200px;
    border: 2px solid white;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 125px; /* text | image */
    align-items: center;
    column-gap: 20px;
}


/* Text section */
.sidekick-text {
    text-align: center;
    overflow: hidden;
}

.sidekick-text h2 {
    margin: 0;
    font-size: 22px;
    word-break: break-word;
}

.sidekick-text p {
    margin-top: 10px;
    font-size: 14px;
    word-break: break-word;
}


/* Image (locked size) */
.sidekick-box img {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border: 2px solid white;
}
