/* page */

body {
    background: #000000 url('https://rikkisdomain.neocities.org/assets/bg1.png');
    color: #000000;
    font-family: 'MS Gothic', serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

/* whole layout wrapper dont fuck with it */
#wrapper {
    width: 1000px;

    /* makes it slightly left... */
    margin-left: 200px;
    margin-right: auto;

    margin-top: 20px;
}

/* header image */
#header {
    margin-bottom: 12px;
    
    
}

#header img {
    background: url('https://rikkisdomain.neocities.org/assets/neobanner.png') no-repeat 100% 0;
    background-size: 100%;
    height: 240px;
    width: 100%;
    display: block;
    border: 3px solid #000;
}

/* sidebar + content row */
#main {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* left sidebar */
#sidebar {
    width: 250px;
}

/* main content */
#content {
    flex: 1;
}

/* box */
.box {
    background: #ffffff;
    color: #111;

    border: 1px solid #000;

    padding: 10px;
    margin-bottom: 12px;

    box-shadow: 4px 4px 0 #000000;
}

/* little headers */
.box h1,
.box h2 {
    margin-top: 0;
    font-family: 'MS Gothic', serif;
    border-bottom: 1px solid #444;
    padding-bottom: 4px;
}

/* links */
a {
    color: #1650cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* last fm stuff */
#sidebar img {
    max-width: 100%;
    display: block;
    margin-bottom: 5px;
}

/* table stuff wip */
.profile-table {
   border-collapse: collapse;
   background: #111;
   color: rgb(255, 255, 255);
   font-size: 14px;
   width: 100%;
}

.profile-table td {
   border: 1px solid #000000;
   padding: 5px 10px;
}

.profile-table .label {
   font-weight: bold;
   white-space: nowrap;
}

/* popup */
.popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.7);
   display: none;
   z-index: 9999;
}

.popup:target {
   display: block;
}

.popup-box {
   background: #000000;
   color: #eee;
   width: 300px;
   padding: 20px;
   margin: 100px auto;
   border: 1px solid #666;
}

.close {
   float: right;
   text-decoration: none;
   color: #ffffff;
}