@import url("https://404city.neocities.org/css/variables.css");
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-webkit-user-drag: none;
    color: var(--navy);
    cursor: default;
}
a, a * {cursor: pointer;}
html {
    font-size: 14px;
    background-color: black;
    background-image: linear-gradient(transparent, var(--navy)), url("https://404city.neocities.org/img/city.webp");
    background-size: cover;
    background-attachment: fixed;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1002px;
    padding: 0;
    border: 2px solid var(--navy);
    border-top: none;
    border-bottom: none;
    box-shadow: 0 0 1rem var(--navy);
}
main {
    width: 1200px;
    max-width: 100%;
    border: 3px double var(--navy);
    background-color: var(--white);
    border-bottom: none;
    display: flex;
    flex-direction: column;
}
header {
    width: 1200px;
    max-width: 100%;
    border: 3px double var(--navy);
    background-color: var(--white);
    border-top: none;
    border-bottom: none;
    z-index: 9999;
}
header::before {
    content: "The 404 City";
    display: block;
    background-color: var(--navy);
    color: white;
    padding: 2rem 3rem;
    user-select: none;
    font-size: 6rem;
}
nav {
    border-top: 3px double var(--navy);
    background: var(--blue);
    display: flex;
    user-select: none;
    font-size: 0;
    padding: 0 0.5rem;
}
nav a {
    color: var(--white);
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1.125rem;
    padding: 0.5rem;
}
nav a:hover {
    text-decoration: underline;
    background-color: color-mix(in srgb, var(--blue), var(--navy));
}
.cols {
    box-shadow: inset 0.125rem 0.125rem 0 color-mix(in srgb, var(--blue) 30%, transparent);
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    background-color: var(--lighterblue);
    padding: 0.5rem;
    min-height: 100vh;
    align-items: start;
}
section:first-child p a, .email {
    display: none;
}
section:first-child h2::after {
    content: " - status.cafe Profile";
}
h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding: 1rem;
    text-align: center;
    background-color: var(--skyblue);
    border: 1px solid var(--blue);
    box-shadow: 0.125rem 0.125rem 0 color-mix(in srgb, var(--blue) 30%, transparent);
}
.status-username {
    font-size: 1.25rem;
    margin: 0 0.25rem 0.5rem;
}
dt {
    font-size: 1.25rem;
    padding: 0.5rem 0.75rem;
    background-color: var(--lightblue);
    margin-bottom: 0.5rem;
    border: 1px solid var(--blue);
    box-shadow: 0.125rem 0.125rem 0 color-mix(in srgb, var(--blue) 30%, transparent);
}
dd, .status-content {
    border: 1px solid var(--blue);
    margin: 0.5rem 0;
    padding: 1rem;
    width: 100%;
    box-shadow: inset 0.125rem 0.125rem 0 color-mix(in srgb, var(--blue) 30%, transparent);
    margin-top: 0;
    line-height: 1.5;
}
.status-content {
    background-image: linear-gradient(var(--white), var(--lighterblue));
    border-radius: 0.25rem;
}
dd {
    background-color: var(--white);
}
.status {
    margin-bottom: 0.5rem;
    background-image: linear-gradient(var(--white), var(--lightblue));
    border: 1px solid var(--blue);
    padding: 0.5rem;
    padding-bottom: 0;
    box-shadow: 0.125rem 0.125rem 0 color-mix(in srgb, var(--blue) 30%, transparent);
    border-radius: 0.25rem;
}
*::-webkit-scrollbar {width: 1rem;}
*::-webkit-scrollbar-track {
    border-left: 1px solid var(--navy);
    background-color: var(--white);
    box-shadow: inset 0.125rem 0.125rem 0 color-mix(in srgb, var(--blue) 30%, transparent);
}
*::-webkit-scrollbar-thumb {
    border: 1px solid var(--navy);
    border-right: none;
    background-color: var(--lightblue);
    box-shadow: 0 0.125rem 0 color-mix(in srgb, var(--blue) 30%, transparent);
}
*::-webkit-scrollbar-thumb:hover {background-color: var(--blue);}
*::-webkit-scrollbar-thumb:active {background-color: var(--navy);}
body::-webkit-scrollbar-track {
    background-color: var(--navy);
    box-shadow: none;
    border: none;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    box-shadow: none;
    border: none;
}
body::-webkit-scrollbar-thumb:hover {background-color: var(--skyblue);}
body::-webkit-scrollbar-thumb:active {background-color: var(--lightblue);}
.aboutHead {
    font-size: 2rem; font-weight: bold; text-align: center;
}
::selection {
    background-color: var(--navy);
    color: var(--white);
}
@media (max-width: 1200px) {
    html {font-size: calc(1vw / 12 * 14)}
    body {border: none;}
    header, main {
        border-left: none;
        border-right: none;
    }
}
@media (max-width: 768px) {
    html {font-size: 4vw}
    header::before {
        padding: 1rem 0;
        text-align: center;
    }
    nav {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .cols {
        grid-template-columns: 1fr;
    }
    header::before {font-size: 3.5rem;}
}