/* http://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; box-sizing: border-box; vertical-align: baseline; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; }

/* site styles */
:root {
  --dark: #0e0c11;
  --light: #eeeee6;
}

@font-face {
  font-family: Dream Avenue;
  src: url('dreamavenue.woff2');
}

@font-face {
  font-family: 'Drugs Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Drugs Regular'), url('Drugs.woff') format('woff');
  }

@font-face {
    font-family: 'Bebas Neue';
    src: url('bebasneue.woff2');
  }

@font-face {
    font-family: 'Bitter';
    src: url('Bitter-Regular.woff2')
  }

body {
  font-family: monospace, sans-serif;
  background-color: black;
  color: var(--light);
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  max-width: 500px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color: black;
}

h1 {
  font-family: Bebas Neue;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #f05c61;
}

h2{
  font-family: Bebas Neue;
  font-size: 1.5rem;
  max-width: 200px;
}

h3{
  font-family: Drugs Regular;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight:900;
  padding-bottom: 20px;
}

p{
  font-size: 1rem;
  line-height: 1rem;
}

.header{
  background-color: #0e0c11;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  
}

.header img {
  width: 150px;
  margin-bottom: 10px;
}

.header p{
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}

.linkbar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap:10px;
  margin-bottom: 20PX;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.linkbar-btn{
  background-color: #234e68;
  width: 130px;
  padding: 10px;
  text-decoration: none;
  font-family: Bebas Neue;
  color: white;
  font-size: 1.3rem;
  border-radius: 10px;
  margin-bottom: 10px;
}

.linkbar-btn:hover{
  background-color: #62cbc9;
  color: #234e68;
}

.socials{
  background-color: #234e68;
  text-decoration: none;
  font-family: Bebas Neue;
  border-radius: 10px;
  height: 100%;
  padding: 4px;
}

.socials svg{
  fill:white;
}

.socials:hover{
  background-color: #62cbc9;
}

.socials svg:hover{
  fill: #234e68;
}

.shop{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  
}

.shop span{
  font-size: 0.7rem;
}

.prodsection{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-left: 10px;
  padding-right:10px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #eeeee6;

}

.product{

}

.product a{
  text-decoration: none;
  color: #234e68;
}

.product a:hover{
  opacity: 0.6;
}

.product img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.morelinks{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #0e0c11;
  
}

.morelinks a{
  width: 100%;
  background-color: #62cbc9;
  width: 90%;
  padding: 10px;
  text-decoration: none;
  font-family: Bebas Neue;
  color: #0e0c11;
  font-size: 1.3rem;
  border-radius: 10px;
  margin-right: auto;
  margin-left: auto;
}

.morelinks a:hover{
  background-color: #234e68;
  color:#eeeee6;
}