/* these are the main colors and header image
   replace them with anything you want! */
:root {
    --header-bg: url('images/header.png');
    --accent-color: #6a381f;
    --link-color: #563314;
    --bg-color: #bc8a5f;
    --bg-color2: #56301e;
    --text-color: #590a03;
    --favorite-color: #f3d5b5;
    /* you can change the stripe colors easily from here */
    --stripe-color: #f3d5b5;
    --stripe-color2: #d4a276;
}
/* you can get hex codes from sites like this:
   https://palettes.shecodes.io/
   i just looked up "css color templates" to find that link! */
/* this applies to all the content */
* {
    color: var(--text-color);
/* change the font here, it's set up to all use the same one */
    font-family: monospace ;
    border-radius: 1em;
}
/* this is for when you select text on the page */
::selection {
    background: var(--accent-color);
    color: var(--bg-color);
}
* {
  cursor: url(https://i.postimg.cc/3RwJjYx8/ddik124-f2b36cbb-6a50-428b-a345-d702f074371d.gif), auto;
  -webkit-animation: cursor 400ms infinite;
  animation: cursor 400ms infinite;
}

@-webkit-keyframes cursor {
  0% {cursor: url(https://i.postimg.cc/yd62pytB/frame-0-delay-0-1s.gif), auto;}
  20% {cursor: url(https://i.postimg.cc/brWMJcJN/frame-1-delay-0-1s.gif), auto;}
  40% {cursor: url(https://i.postimg.cc/kGBzqX7p/frame-2-delay-0-1s.gif), auto;}
  60% {cursor: url(https://i.postimg.cc/V67pxbPt/frame-3-delay-0-1s.gif), auto;}
} 

@keyframes cursor {
0% {cursor: url(https://i.postimg.cc/yd62pytB/frame-0-delay-0-1s.gif), auto;}
  20% {cursor: url(https://i.postimg.cc/brWMJcJN/frame-1-delay-0-1s.gif), auto;}
  40% {cursor: url(https://i.postimg.cc/kGBzqX7p/frame-2-delay-0-1s.gif), auto;}
  60% {cursor: url(https://i.postimg.cc/V67pxbPt/frame-3-delay-0-1s.gif), auto;}
}

body {
    background-image: url(https://i.pinimg.com/736x/c2/b1/a3/c2b1a3983cd403200c9ed608c3fbbc3f.jpg);
    background-color: var(--bg-color2);
    margin: 0;
    width: auto;
}
/* i think having better line spacing helps text to be more readable, but you can remove it if you want */
p {line-height: 1.5em;}

header {
    background-color: #1a1008;
/* you can add the image url in :root (at the top) if you want */
    background-size: 100%;
    background-position: center;
/* change the minimum height if you want it to take up more/less space */
    min-height: 122px;
/* can also limit the size of the header if you don't want to fill up the top. i recommend at least 800px tho! */
    /*max-width: 980px;*/
    margin: 0 auto;
    border-top: 6px solid var(--text-color);
    border-bottom: 6px solid var(--text-color);
/* i have a default border-radius set, but i didn't want rounded corners on this element */
    border-radius: 0;
    border-color:#080400;
}

/* this is your site title displayed at the top of the page */
header > h1 {
    margin: 18px auto;
    border-radius: .3em;
    max-width: 900px;
    padding: 12px;
    font-size: 4em;
    color:#ce9760;
/* you can change the text-align to center or right if you want it placed differently */
    font-family: Times New Roman;
    text-align: center;
    background-color: #391606;
    border: 2px dashed var(--text-color);
    border-color: #bc8a5f;
    text-shadow: #120600 4px 1px 3px;
}

nav {
    padding: 1em;
    margin: 1em;
    font-weight: bold;
}

nav > ul {
    max-width: 960px;
    margin: auto;
    line-height: 3rem;
/* this line takes away the dot in front of the list items */
    list-style-type: none;
/* list items have default padding but we don't need it for these */
    padding-left: 0;
/* and this spaces out the buttons so they're not touching */
    justify-content: space-evenly;
}
nav li {
    text-align: center;
}
nav li > a {
    background-color: var(--favorite-color);
    box-shadow: var(--accent-color) 4px 4px;
    padding: .5em 3em;
/* this takes away the link underline */
    text-decoration: none;
}
nav li > a:hover {
    box-shadow: var(--text-color) 4px 4px;
}

a {
    color: var(--link-color);
    border-radius: .3em;
    text-shadow: var(--bg-color) 1px 1px 2px;
    font-weight: bold;
    transition: background-color 400ms ease-out;
}
a:visited {
    color: var(--text-color);
}
a:hover {
    background-color: var(--accent-color);
    color: #e7bc91;
}

/* you can change this to anything you want :) */
ul { list-style-type: "✮ "; }

#sidebar {
    /* made the stripe bg with a generator:
    https://stripesgenerator.com/
     */
    background-image: linear-gradient(45deg, var(--stripe-color) 25%, var(--stripe-color2) 25%, var(--stripe-color2) 50%, var(--stripe-color) 50%, var(--stripe-color) 75%, var(--stripe-color2) 75%, var(--stripe-color2) 100%);
    background-size: 65.05px 65.05px;
    min-width: 222;
    margin: 1em;
    padding: 1em;
    border: 2px solid var(--text-color);
    box-shadow: var(--accent-color) 4px 4px;
}

#avatar {
    margin: .5em auto;
    box-shadow: var(--accent-color) 4px 4px;
/* image size is 160px so i made its container a little bigger to fit the borders */
    max-width: 164px;
    max-height: 164px;
    border-radius: 1.5em;
}
#avatar img {
    background: var(--lighter-color);
    max-width: 160px;
    border: 2px solid var(--text-color);
    border-radius: 1.5em;
}

#bio {
    text-align: center;
    margin: 1em;
    background: var(--favorite-color);
    border: 2px dashed var(--text-color);
    font-family: Trebuchet MS;
    box-shadow: var(--accent-color) 4px 4px;
    text-shadow: #361201 0 0 4px;
}
#bio p { margin: 1em; }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#stamps {
    justify-content: center;
    align-content: center;}

    .tooltip1 {
          margin-left: center;
    margin-right: center;
        justify-content: center;
    width: 74px; height: 70px;
    background-color: #1b1715;  text-align: center; display: inline-block;
  position: relative;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
    .tooltip2 {
         margin-left: center;
    margin-right: center;
        justify-content: center;
    width: 74px; height: 70px;
    background-color: #2a2321;  text-align: center; display: inline-block;
  position: relative;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
    .tooltip3 {
         margin-left: center;
    margin-right: center;
    justify-content: center;
    width: 74px; height: 70px;
    background-color: #3c3230;  text-align: center; display: inline-block;
  position: relative;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
    .tooltip4 {
         margin-left: center;
    margin-right: center;
        justify-content: center;
    width: 74px; height: 70px;
    background-color: #534440;  text-align: center; display: inline-block;
  position: relative;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
    .tooltip5 {
         margin-left: center;
    margin-right: center;
        justify-content: center;
    width: 74px; height: 70px;
    background-color: #604a46;  text-align: center; display: inline-block;
  position: relative;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
   .tooltip6 {
         margin-left: center;
    margin-right: center;
        justify-content: center;
    width: 74px; height: 70px;
    background-color: #882422;  text-align: center; display: inline-block;
  position: relative;
       border-bottom: 1px dotted black; /* If you want dots under the hoverable text */}
   .tooltip7 {
         margin-left: center;
    margin-right: center;
        justify-content: center;
    width: 74px; height: 70px;
    background-color: #ee8832;  text-align: center; display: inline-block;
  position: relative;
       border-bottom: 1px dotted black; /* If you want dots under the hoverable text */}
/* Tooltip text */
.tooltip1 .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e7bc91;
  color: #6a381f;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip1 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip1:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip2 .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e7bc91;
  color: #6a381f;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip2 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip3 .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e7bc91;
  color: #6a381f;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip3 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip3:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip4 .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e7bc91;
  color: #6a381f;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip4 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.tooltip5 .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e7bc91;
  color: #6a381f;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip5 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip5:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip4:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip6 .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e7bc91;
  color: #6a381f;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip6 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip6:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.tooltip7 .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #e7bc91;
  color: #6a381f;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip7 .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip7:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
#content {
    display: flex;
    max-width: 960px;
    margin: auto;
}
#infos {
    border: dashed;
    padding: 1em 1em;
    background-color: #e7bc91;
    border-block-color: #6a381f;
}
#personality {
    border:dashed; 
    padding: 1em 1em;
    background-color: #e7bc91;
    border-block-color: #6a381f;
}
main {
    background-color: var(--favorite-color);
    padding: 1em 2em;
    margin: 1em;
    border: 2px solid var(--text-color);
    box-shadow: var(--accent-color) 4px 4px;
    text-shadow: var(--bg-color2) 1px 1px 3px;
}

main > h1,
main > h2,
main > h3,
main > h4 {
    background-color: var(--bg-color);
    border-radius: .4em;
    padding: .2em .5em;
    text-shadow: var(--bg-color2) 1px 1px 3px;
}

#subtitle1 {
    font-size:15px;
    background-color: #bc8a5f;
    padding: .2em .5em;
}

#subtitle2 {
    font-size:17px;
    background-color: #bc8a5f;
    padding: .2em .5em;
}
.container {
  display: grid;
  grid-template-columns: auto 1fr; /* First column adjusts to content, second fills remaining space */
  gap: 10px; /* Optional: Adds spacing between columns */
    padding: .2em .5em;
}

.column1 {
box-shadow: var(--accent-color) 4px 4px;
    padding: .2em .5em;
    border: dashed;
     border-block-color: #6a381f;
  background-color: #e7bc91;
}

.column2 {
    box-shadow: var(--accent-color) 4px 4px;
    padding: 0.2em 1.7em;
        border: dashed;
     border-block-color: #6a381f;
  background-color: #e7bc91;
}
.row {
  display: flex;
}
.column {
    border:dashed; 
    padding: 1em 1em;
    background-color: #e7bc91;
    border-block-color: #6a381f;
    border-top: hidden;
    border-left: hidden;
    column-gap: 40px;
    column-width: auto;
  flex: 285%;
}
/* a class for centering text and images */
.center { text-align: center; }

footer {
    background-color: var(--bg-color);
    text-shadow: var(--bg-color2) 1px 1px 3px;
    text-align: center;
    font-size: small;
    padding: 1em;
    margin: 1em auto;
    max-width: 960px;
}

/* these are the mobile styles! */
@media only screen and (max-width: 800px) {
    #content {
        flex-wrap: wrap;
    }
    #sidebar {
        width: 92%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        border: none;
    }
    #stamps {
        display: none;
    }

    header {min-height: 160px;}
    header > h1 { 
        font-size: 3em;
        margin: .4em;
    }
    nav > ul {
    /* this stuff makes it wrap around on mobile */
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    #avatar {margin: 0 1em;}
    #bio {width: 50%;}
    main {margin: 0 1em;}
    #sidebar ul {   
        margin: 0 1em;
        display: flex;
        flex-wrap: wrap;
        line-height: 2em;
    }
    #sidebar li {
        padding-left: 0;
        margin: .3em 1em;
    }
    footer {
        margin: 1em;
    }
}