/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');

/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */
/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: ;
  --content-background-color: rgba(198, 165, 242, 0.7);
  --sidebar-background-color: rgba(198, 165, 242, 0.7);

  /* Text Colors: */
  --text-color: #fbf2ff;
  --header-color: #f6e3ff;
  --sidebar-text-color: #fbf2ff;
  --footer-text-color: #a6309c;
  --link-color: #f6e0ff;
  --link-color-hover: #f0ccff;

  /* Font: */
  --font-family: 'Deckards';
  --heading-font: 'Doto', monospace;
  --font-size: 15px; 
    
    
/*BORDERS*/
    --border-style: dashed solid solid solid;
     --border-style-section: dotted;

    
  /* Other Settings: */
  --margin: 5px;
  --padding: 15px;
  --border-color: #e0cdfa;
  --line-spacing: 14px;
      
}


@font-face {
    font-family: 'Deckards';
    src: url(deckards_regular_serif.ttf);
}

/*MAIN STUFF*/


body {
    background:radial-gradient(1700px circle at 48.73% 80.12%, #f132c7 0%, #1f82ec 100%);
        
        }


/*HEADER*/


header {
    font-family: var(--heading-font);
    font-size: 50px;
    color: #91408b;
    background-color: var(--sidebar-background-color);
    border: var(--border-color) 4px solid;
    border-radius: 15px;
    width: 700px;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: var(--padding); 

}


/* ASIDE/SIDEBAR */

aside {
    background-color: var(--sidebar-background-color);
    border: var(--border-color) 4px;
    border-style: var(--border-style);
    border-radius: 15px;
    line-height: 12px;
    font-family: var(--font-family);
    padding: var(--padding);
}

aside h5 {
    color: #fbf2ff;
}

aside h2 {
    color: #f6e3ff;
}


#columnssidebar {
    border-radius: 9px;
    overflow-y: hidden;
    font-family: var(--font-family);
    border-color: var(--border-color);
    border-top-width: 20px;
    border-left-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-style: solid;
    background: var(--sidebar-background-color);
    text-align: center;
    
}

#columnssidebar img{
    padding-bottom: 10px;
}

.containcolumnssidebar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
}

#columnssidebar:nth-child(1),
#columnssidebar:nth-child(2),
#columnssidebar:nth-child(3) {
  width: 300px;
}

/*MAIN*/

main {
    border: var(--border-color) 4px;
    border-style: var(--border-style);
    border-radius: 15px;
    background-color: var(--content-background-color);
    line-height: var(--line-spacing);
    padding: var(--padding);

}


/*FOOTER*/

footer {
    background-color: var(--sidebar-background-color);
    border: var(--border-color) 4px;
    border-style: var(--border-style);
    border-radius: 15px;
    padding: var(--padding);
    font-family: var(--font-family);
    font-size: 12px;
    color: var(--footer-text-color);
    
}

/*GRID FORMATTING (TUTORIAL FROM PETRAPIXEL NEOCITIES)*/

body {
  display: grid;
  grid-gap: 10px;
  grid-template:
    "myHeader myHeader"
    "mySidebar myMainContent"
    "myFooter myFooter"
    / 1fr 3fr;
    margin: 10px;
}

header { grid-area: myHeader; }
aside { grid-area: mySidebar; }
main { grid-area: myMainContent; }
footer { grid-area: myFooter; }


/*MOBILE RESPONSIVENESS*/

@media (max-width: 800px) {
  body {
    grid-template:
      "myHeader"
      "mySidebar"
      "myMainContent"
      "myFooter";
  }  
}



/*FONT TYPES FORMATTING*/


h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
    color: var(--header-color);
}

body h1 {
  font-size: 1.8em;
}

body h2 {
  font-size: 1.4em;
}

body h3 {
  font-size: 1.3em;
}

body h4 {
  font-size: 1.2em;
}

body h5 {
  font-size: 1.1em;
}

body h6 {
  font-size: 1em;
}

p {
    font-size: var(--font-size);
    font-family: var(--font-family);
    color: var(--text-color);
    
    
    
}

/*LINK FORMATTING COLOURS*/

/* Links: */

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
cursor: var(--grab-cursor);
}


/*MAIN CONTENT*/

section fieldset{
    border-style: var(--border-style-section);
    border-width: 2px;
    border-color: var(--border-color);
    border-radius: 14px;
    overflow-y: auto;
    font-family: var(--font-family);
    color: var(--text-color);
}

#columns3 fieldset {
    min-height: 160px;
}


.containcolumns {
  display: flex;
  gap: 10px;
}

#row5050:nth-child(1),
#row5050:nth-child(2) {
  width: 50%;
}

#columns3:nth-child(1),
#columns3:nth-child(2),
#columns3:nth-child(3) {
  width: 33%;
  height: auto;
}

#ipod {
    text-align: center;
    border: solid var(--border-color) 3px;
    border-radius: 15px;
    background: var(--sidebar-background-color);
    margin: 10px;
    padding: 10px;
    height: 150px;
    
}

#fullwidth {
    border-style: var(--border-style-section);
    border-width: 2px;
    border-color: var(--border-color);
    border-radius: 14px;
    font-family: var(--font-family);
    color: var(--text-color);
    padding: var(--padding);
}

.containermasonry {
  display: flex;
  flex-direction: row;
  gap: 2%;
  flex-wrap: wrap;
}

#threebythree:nth-child(1),
#threebythree:nth-child(5),
#threebythree:nth-child(7) {
  width: 32%;
  height: 40%;
}

#threebythree:nth-child(2),
#threebythree:nth-child(8) {
  width: 32%;
  height: 30%;
}

#threebythree:nth-child(3),
#threebythree:nth-child(6),
#threebythree:nth-child(9) {
  width: 32%;
  flex-grow: 1;
}

#threebythree:nth-child(4) {
  width: 32%;
  height: 25%;
}

#threebythree img {
    width: 300px;
}

#pupspage img:hover {
    transform: rotate(5deg);
}

/*CD COLLECTION FLEXBOX*/

.cdcollection {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: stretch;
  align-content: start;
}

.compactdisc img {
    width: 90px;
    padding: 3px;
}


/*CALENDAR*/

#widget-calendar table {
  border: 1px solid mediumpurple;
  border-collapse: collapse;
  color: mediumpurple;
  background-color: var(--text-color);
}

#widget-calendar td {
  padding: 0 .25rem;
  border: 1px solid mediumpurple;
}

#widget-calendar .month {
  font-weight: bold;
  text-align: center;
}

#widget-calendar .days {
  font-weight: bold;
}

#widget-calendar .today {
  font-weight: bold;
}

#widget-calendar .blank {
  background-color: rebeccapurple;
}

#fixedtimes {
    position: fixed;
    right: 0;
    top: 0;
    margin: 2px;
    background-color: var(--text-color);
    border: 2px solid rebeccapurple;
    
}

/*CUSTOM SCROLLBARS*/


* {
scrollbar-width: auto;
scrollbar-color: #f6e3ff transparent;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 10px;
}

*::-webkit-scrollbar-track {
background: #ffffff;
}

*::-webkit-scrollbar-thumb {
background-color: #8f54a0;
border-radius: 10px;
}


/*TABLE OF CONTENTS*/

#toc {
    font-family: var(--font-family);
    font-size: var(--font-size);
    padding: var(--padding);
    color: var(--text-color);
}

/*SNOWFLAKES*/
/* customizable snowflake styling */
.snowflake {
  color: rgba(255, 255, 255);
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%{-webkit-transform:translateX(0px);transform:translateX(0px)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}100%{-webkit-transform:translateX(0px);transform:translateX(0px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%{transform:translateX(0px)}50%{transform:translateX(80px)}100%{transform:translateX(0px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}

/*ZINE IDEA GENERATOR*/

#generateButton {
    border: 3px double hotpink;
    background-color: whitesmoke;
    font-family: var(--font-family);
    color: black;
}

#zineideabox {
    text-align: center;
}

/*BRACELETS*/

#bracelets {
    flex-flow: wrap column;
}

/*GUESTBOOK*/

#guestbook {
    width: 100%;
    height: 90%;
    border: none;
    
}