/* GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	/* font-family: "Cascadia Code", sans-serif; */
}

body {
    background-color: #111111;
    font-family: "Cascadia Code", sans-serif;
    padding-bottom: 120px;
    color: #ffffff;
}
/* GENERAL */

/* LOGO */
.Logo {
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-size: 48px;
    position: absolute;
    top: 16px;
    left: 20px; 
}

.logo-api { color: blueviolet }
.logo-rlb { color: #ffffff; }
.logo-dot { color: #555; }
.logo-lol { color: chartreuse; }

.main-site {
    position: absolute;
    padding: 6px 12px;
    color: #111111;
    background-color: chartreuse;
    border-radius: 5px;
    font-family: "Cascadia Code", monospace;
    font-size: 20px;
    font-weight: 700;
    top: 16px;
    right: 20px;
    box-shadow: 0.4rem 0.4rem #05060f;
}
/* LOGO */

/* API CONTAINERS */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 80px 20px 20px;
    padding: 16px;
    background-color: #0c0c0c;
    border: 2px solid #1c1c1c;
    box-shadow: 0.4rem 0.4rem #05060f;
    border-radius: 20px;
}

.container:hover {
    border-color: #222222;
    transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.container div {
    padding: 20px;
    background-color: #111111;
    border: 1px solid #252525;
    box-shadow: 0.4rem 0.4rem #05060f;
    border-radius: 12px;
    font-size: 18px;
    text-align: left;
    transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.container div:hover {
    background-color: #151515;
    border-color: #7cff00;
    transform: translateY(-2px);
}
/* API METHOD */
.api-method {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 8px;
    color: #111111;
    background-color: chartreuse;
    border-radius: 5px;
    font-family: "Cascadia Code", monospace;
    font-size: 13px;
    font-weight: 700;
}

.api-endpoint {
    display: block;
    color: #ffffff;
    font-family: "Cascadia Code", monospace;
    font-size: 18px;
}

.api-description {
    margin-top: 8px;
    color: #777777;
    font-size: 14px;
}
/* API CONTAINERS */

/* MEDIA */
@media (max-width: 800px) {
    .container {
        grid-template-columns: 1fr;
    }
}
/* MEDIA */



