@import url('"//brick.freetls.fastly.net/Lato:500,800,900,400i,800i,900i');

:root {
  --bg-color: #fff;
  --border-color: #b24922;
  --color: #ab3b3a;
  --font: "Lato";
  --shadow-color: 26deg 10% 60%;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
}

@media only screen and (max-width: 768px) {
  main {
    width: 100%;
    margin: 0 auto;
  }
}

img {
  display: block;
  max-width: 100%;
}

body {
  font-size: 16px;
  line-height: 1.5;
  background: url(https://soltian.net/ragtagteam/pattern_077edit.gif) repeat fixed left;
  color: var(--color);
  font-family: var(--font), "Trebuchet MS", Arial, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  max-width: 70ch;
  margin: auto;
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

a, a:active {
  text-decoration: initial;
  text-decoration: none;
}

h1 {
  font-variant-caps: small-caps;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

h2 {
  font-variant-caps: small-caps;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 1rem 0 1rem;
  text-align: center;
}

h3 {
  font-size: 1rem;
  font-weight: 800;
}

.skewer {
  display: inline-block;
  position: relative;

  &:before,
  &:after {
    content: "";
    border-bottom: 2px dotted var(--color);
    width: 3em;
    margin: 0 0.5em;
    position: absolute;
    bottom: 0.6em;
  }

  &:before {
    right: 100%;
  }

  &:after {
    left: 100%;
  }
}

/* PROFILE CARD */

.profile {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-bottom: 3px solid var(--border-color);
  border-radius: 0.313rem;
  color: var(--color);
  margin: 10px;
  padding: 1rem;
  overflow: hidden;
  min-width: 20rem;
}

.profile img {
  border-radius: 50%;
  width: 35%;
  margin: 5px auto -15px auto;
  border: 2px dotted;
}

.profile p {
  padding: 0.5rem;
  text-align: center;
  margin: 0 auto;
  text-wrap: pretty;
}

.profile a:link, a:visited, a:active {
  color: var(--color);
  font-weight: 900;
  border-bottom: 2px solid;
}

.profile a:hover {
  border-bottom: 0;
}

/* CONVENTION SCHEDULE */

#cons {
  min-width: 25rem;
}

ul li {
	list-style: none;
	position: relative;
	padding: 3px 0 0 15px;
	margin: 5px;
  }
  
ul li::before {
	content: '*';
	position: absolute;
	top: 6px;
	left: 0;
  }

details > ul { 
  max-height: 225px;
  overflow-y: auto;
}

summary {
  cursor: pointer;
  list-style: none;
}

/* SOCIAL MEDIA/CONTACT */

#contact {
  font-size: 1.2rem;
  align-items: center;
  color: var(--color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  border-radius: 5px;
  color: var(--color);
  background-color: var(--bg-color);
  cursor: pointer;
  margin: 8px;
  padding: 10px;
  width: 65px;
  transition: all 0.2s ease-in-out;
}

#contact > a:hover {
  -webkit-tap-highlight-color: transparent;
  box-shadow: 
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.25),
    0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.25),
    2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.25),
    5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.25);
  transform: scale(1.05);
}

/* BUTTONS */

#buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

article {
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-bottom: 3px solid var(--border-color);
  border-radius: 5px;
  color: var(--color);
  margin: 10px auto;
  max-width: 25rem;
  padding: 15px;
  transition: all 0.2s ease-in-out;
}

article:hover {
  -webkit-tap-highlight-color: transparent;
  box-shadow: 
    0.3px 0.5px 0.7px hsl(var(--shadow-color) / 0.25),
    0.8px 1.6px 2px -0.8px hsl(var(--shadow-color) / 0.25),
    2.1px 4.1px 5.2px -1.7px hsl(var(--shadow-color) / 0.25),
    5px 10px 12.6px -2.5px hsl(var(--shadow-color) / 0.25);
  transform: scale(1.05);
}

article > i {
  display: inline-block;
  margin-right: 1em;
}

article p {
  color: var(--color);
  line-height: normal;
}

article span {
  display: flex;
  position: relative;
  left: 10px;
  align-items: center;
  margin-left: 10px;
}

aside {
  width: 100vw;
  margin-left: -25px;
}

/* FOOTER */

footer {
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  width: 100%;
  padding: 2rem;
  left: 0;
  bottom: 0;
  line-height: 1.1;
}

footer a:link,
a:visited,
a:active {
  color: var(--color);
  padding: 1px 1px;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-weight: 900;
  text-decoration: underline;
}

footer a:hover {
  color: var(--bg-color);
  text-decoration: underline;
  background: var(--color);
  transition: all 0.3s ease-in-out;
}