/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: "Romantic";
  src: url("font/Romantic.ttf")
}

@font-face {
  font-family: "Rokkitt";
  src: url("font/Rokkitt.ttf")
}

html {
  background-repeat: repeat;
  background-size: 35%;
  background-image: url("https://f2.toyhou.se/file/f2-toyhou-se/images/61512522_dtukElp65gBzp5v.png");
  min-height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Rokkitt";
}

.fullWidth {
  width: 100%;
}

main {
  margin: 16px;
  width: 90%;
  background-color: #e5d5ff;
  border: 3px solid #7d54bf;
  border-radius: 0px;
  padding: 16px;
  display: flex;
  justify-content: center;
}



main.flex-column {
  flex-direction: column;
  align-items: center;
}

.tabtitle {
  font-family: "Romantic";
  letter-spacing: 0.05em;
    margin:0;
    font-size: 18px;
}

p.intabtitle {
  color: #7d54bf;
}


h1, h2 {
  font-family: "Romantic";
  letter-spacing: 0.05em;
  color: #7d54bf;
}

a {
  color: #7d54bf;
}

hr {
  width: 100%;
  border: 1px dashed #e5d5ff;
}

.ombre {
box-shadow: 5px 5px 0px 0px #7D54BF;
}

.button {
  border: 3px solid #7d54bf;
  padding: 8px 16px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: white;
  border-radius: 8px;
  width: fit-content;
}

.layout {
  width: 100%;

  display: grid;
  grid:
    "header header header" auto "leftSide body rightSide" 1fr "footer footer footer" auto / 20% 1fr 20%;
  gap: 16px 8px;
}

.layoutAlt {
  width: 100%;

  display: grid;
  grid:
    "header header header" auto "leftSide body body" 1fr "footer footer footer" auto / 20% 1fr 20%;
  gap: 16px 8px;
}

.header {
  grid-area: header;
}

.leftSide {
  grid-area: leftSide;
  margin: 0px;
}

.body {
  grid-area: body;
}

.rightSide {
  grid-area: rightSide;
}

.footer {
  grid-area: footer;
}

div {
  background-color: white;
  display: flex;}

.divdecor {
  border: 3px solid #7d54bf;
  background-color: white;
  /* box-shadow: 5px 5px 0px 0px #7D54BF; */
}

.maintitle {
  border-bottom: 3px solid #7D54BF;
  color:#7D54BF;
  background-color:#f7f2ff;
}

.p16 {
  padding: 16px;
}

.p8 {
  padding: 8px;
}

.p4 {
  padding: 6px;
}

.navlink {
  color: #7D54BF;
  font-weight: bold;
  text-decoration: dotted;
  text-decoration-line: underline;
}

.toptab {
  background: #7D54BF;
background: linear-gradient(90deg, rgba(125, 84, 191, 1) 12%, rgba(229, 213, 255, 1) 80%);
  color:white;
}

.botborder {
  border-top: 2px solid #e5d5ff;
  border-left: 2px solid #e5d5ff;
  border-bottom: 3px solid #7d54bf;
}

.buttonstabs {
    width: 17px;
    height: 17px;
    display: inline-flex;
    border-top: 1.5px solid #e5d5ff;
    border-left: 1.5px solid #e5d5ff;
    border-bottom: 2px solid #7d54bf;
    border-right: 2px solid #7d54bf;
    background: white;
    color: #7d54bf;
    font-size: 10px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 2px;
    cursor: pointer;
    transition: all .1s;
}

.p32{
  padding: 32px;
}

.p24 {
  padding: 24px;
}

.active {
  text-decoration: none; 
  color:black;
}