
/* GENERAL THEMING */

body {
    background-color: #2B1502;
    color: #CAAB74
}

.box {
    max-width: 800px;
    margin-left: auto ;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 150px;
}

/* TABS */

.tabs-container {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: repeat(2, auto);
}
.tabs-container > details {
  display: contents;
}
.tabs-container > details > summary {
  display: flex;
  justify-content: center;
  grid-row: 1;
}
/* Hides the ::marker pseudo-element */
.tabs-container > details > summary::marker {
  display: none;
  content: "";
}
.tabs-container > details > div {
  grid-column: 1 / -1;
}
.tabs-container > details[open]::details-content {
  display: contents;
}

/* LINK STUFF*/

/* REMOVE LINK UNDERLINES */

a {
    text-decoration: none;
}

/* LINK UNVISITED */

a:link {
  color: aliceblue;
}

/* LINK VISITED */

a:visited {
  color: aliceblue;
}

/* LINK HOVERED */

a:hover {
  font-style: italic;
}

/* Phone - https://www.cursors-4u.com/cursor/oth202 */
* {
  cursor: url('https://cdn.cursors-4u.net/previews/phone-21d6c71d-32.webp') 32 32, auto;
}
/* End www.Cursors-4U.com Code */

