/* my actual blog style2.css */
@font-face {
  font-family: cutesy;
  src: url(../fonts/cutesy.TTF);
}

@font-face {
  font-family: dogica;
  src: url(../fonts/dogica.ttf);
}

@font-face {
  font-family: alagard;
  src: url(../fonts/alagard.ttf);
}

@font-face {
  font-family: rainyhearts;
  src: url(../fonts/rainyhearts.ttf);
}

@font-face {
  font-family: Minecraft;
  src: url(../fonts/Minecraft.ttf);
}

@font-face {
  font-family: Daydream;
  src: url(../fonts/Daydream.otf);
}

@font-face {
  font-family: bubbly;
  src: url(../fonts/bubbly.TTF);
}

body {
  font-family: dogica;
  font-size: 12px;
  letter-spacing: -3px;
  line-height: 1.4;
  margin: 0;
  background-size: 940px;
  background-image: url(../pictures/pink-bg.png);
  color: #fceaff;
}

/* rétablit le scroll global */
html, body {
  overflow-x: hidden; /* pas de scroll horizontal */
  overflow-y: auto;   /* scroll vertical normal */
  bottom: 0;

}

/* Curseur personnalisé global */
*,
*::before,
*::after,
a,
a:hover,
a:active,
button,
button:hover,
button:active,
input,
input:hover,
input:active,
textarea,
textarea:hover,
textarea:active {
  cursor: url('../cursor/normal.png'), auto !important;
}


* {
  box-sizing: border-box;
  overflow-clip-margin: content-box;
}



/* texte qui défile */
.scrolling-text {
  background-color: hsl(334, 100%, 82%);
  padding: 10px;
  color: #ad051e;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  border-top: 2px dotted #fff;
  border-bottom: 2px dotted #fff;
}

#container {
  max-width: 900px;
  margin: 0 auto;
}


#container a {
  color: #af0b0b;
}

#header {
  width: 100%;
  background-color: #fc9acb;
  height: 150px;
  background-image: url(../pictures/bg-header-fraise.png);
  background-size: 100%;
  display: flex;
  justify-content: flex-end;
}

#header img {
  width: 33%;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  justify-self: flex-end;
}

/* navigation section!! */
#navbar {
  height: 40px;
  background-color: #ee427b;
  width: 100%;
  align-content: center;
}

#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li {
  padding-top: 10px;
}

/* navigation links*/
#navbar li a {
  color: #ffdde6;
  font-weight: 800;
  text-decoration: none;
}

#navbar li a:hover {
  color: #f15c75;
  text-decoration: underline;
}

#flex {
  display: flex;
}

aside {
  background-color: hsl(338, 100%, 76%);
  width: 200px;
  padding: 20px;
  font-size: smaller;
  border-top: 3px dotted hsl(345, 96%, 56%);
  border-left: 3px dotted hsl(345, 96%, 56%);
  border-bottom: 3px dotted hsl(345, 96%, 56%);
}

.gif-aside {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
}

gif-aside img {
  width: 100px;
  height: auto;
}

main {
  background-color: hsl(338, 100%, 87%);
  border: 3px dotted hsl(345, 96%, 56%);
  flex: 1;
  height: 91vh;
  padding: 10px !important;
  padding-bottom: 10px;
  box-sizing: border-box;
  order: 2;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: hsl(345, 96%, 56%) hsl(338, 100%, 87%);
}

.about-me {
  align-items: flex-start;
  margin-bottom: 5px;
  text-align: start;
}
.about-text p {
  margin-bottom: 0;
  margin-top: 0;
}

#pfp {
  width: 35%;
  height: auto;
  display: flex;
  float: right;
  display: block;
  margin: 0;
}

.pfp {
  padding: 0;
  justify-self: right;
}

#pfp img {
  margin: 20px;
}

.about-text {
  text-align: start;
  margin: 0;
  padding: 0;
  color: rgb(255, 133, 177);
}

#leftSidebar {
  width: 238px;
  order: 1;
  height: 91vh;
  padding: 5px;
  box-sizing: border-box;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: hsl(338, 100%, 87%) rgb(255, 133, 177);
}

.lastfm-widget {
  width: 215px; 
  height: auto;
  overflow: hidden; 
  margin: 0 auto;
  padding: 0;
  height: auto;
}

.lastfm-widget img {
  width: 100%; 
  display: block;
  object-fit: cover;
  object-position: left;
}

#rightSidebar {
  order: 3;
}

footer {
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0;
  background: hsl(338, 100%, 87%);
  border-top: 2px dashed hsl(338, 100%, 76%);
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.9em;
  color: hsl(345, 96%, 56%);

}

h1,
h2,
h3 {
  color: #fff2f7;
  font-family: cutesy;
  letter-spacing: 2px;
}

h2 {
  font-family: bubbly;
  letter-spacing: 0.5px;
  font-size: 21px;
}

h3 {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
}

h1 {
  font-size: 25px;
  margin-top: 0;
  margin-bottom: 10px;
}

.welcome-title {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 8px; 
}

.welcome-title img {
  vertical-align: middle;
}

strong {
  color: #f5646b;
  padding-top: 0;
  padding-bottom: 5px; 
  margin-top: 0;
  margin-bottom: 5px;
}

.about-me > p {
  padding-top: 0;
  padding-bottom: 5px;
  margin-top: 0;
  margin-bottom: 8px;  
}

/* my chat box (or smth else i might just change it)*/
.box {
  border: 1px solid #f5646b;
  background-image: url(../pictures/heart-bg.jpeg);
  background-size: 50px;
  background-repeat: repeat;
  background-position: center;
  position: relative;
  width: 190px;
  height: 190px;
  margin: 10px auto 0 10px;
  padding: 0;
  display: block; 
}

.box iframe {
  width: 105%;
  height: 100%;
  display: block;
  border: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
  background-color: #ffffff;
}

@media only screen and (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }

  aside {
    width: 100%;
  }

  main {
    order: 1;
  }

  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

  .border-left {
  display: flex;
  justify-content: center; 
  align-items: center;    
  width: 100%;         
  height: 150px;          
}

  #navbar ul {
    flex-wrap: wrap;
  }
}

a {
  text-decoration: none;
  display: block;
  margin-block-start: 7px;
  margin-block-end: 7px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

#navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.socials ul {
  list-style-type: none;
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0;
}

.socials li { 
display: block; 
padding: 4px 0;
color: hsl(345, 96%, 56%);
background-color: hsl(338, 100%, 87%);
text-align: center;
border-bottom: hsl(345, 96%, 56%);
border-left: hsl(345, 96%, 56%);
border-right: hsl(345, 96%, 56%);
box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
}

.socials li:hover {
background-color: hsl(338, 100%, 76%);
box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 40%), inset -13px 0px 6px -10px rgb(66 66 66 / 76%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 58%);
}

.webrings {
  display: flex;           
  flex-wrap: wrap;
  row-gap: 0px;       
  column-gap: 10px;         
  align-items: center;
  overflow-y: scroll;    
  scrollbar-width: thin;
  scrollbar-color: hsl(345, 96%, 56%) rgb(255, 226, 237);
  height: 140px;
}

.webrings img {
  display: block;           
}

#pfp {
  overflow: visible !important;
}

/* header */
.image-header {
  background-image: url(pictures\bg-header-fraise.png);
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: contain;
  border-bottom: 3px dashed #e91e3d;
}

/* gif header */
.gif-divider {
  text-align: center;
  background: transparent;
  padding: 5px 0;
}

/* blocs */
.site-log,
.about,
.chatbox,
.music-player {
  padding: 15px;
  border-image: url('../pictures/border-zigzag.png') 9 fill round; 
  border-style : solid;
  border-width: 12px;
  border-radius: 15px;
  border-color: hsl(345, 96%, 56%);
  transition: transform 0.2s ease;
  box-shadow: rgb(255, 133, 177) 0px 0px 8px, rgb(255, 133, 177) 0px 0px 16px;
}

.music-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.music-player,
.div2,
.div3,
.blinkies, 
.updates,
.about-me {
  background: rgb(255, 226, 237) !important;
  padding: 15px;
  border: 2px solid hsl(345, 96%, 56%) !important;
  border-radius: 15px !important;
  box-shadow: rgb(255, 133, 177) 0px 0px 8px, rgb(255, 133, 177) 0px 0px 16px; 
 }

.youtube-player iframe {
  border: 3px dotted hsl(345, 96%, 56%);
  box-shadow: 2px 2px 6px #e5a1c4;
}

.youtube-player {
  padding : 0;
  display: flex;
  margin : 0;
}

h2 {
  margin-top: 0;
  font-size: 1.5em;
  color: #ad001d;
}

.song-info {
  margin-top: 10px;
  font-size: 0.9em;
  text-align: center;
  color: #f5f5f5;
}

.dontgiveup {
  position: relative;
  display: flex;
  align-items: flex-end;  
  justify-content: flex-start; 
  padding: 10px;
  width: 100%;
  height: auto;
}

#dontgiveup {
  width: 60px;
  height: auto;
  margin-right: 20px; 
  float: left;    
}

.div2 .dgu-text {
  color: #ff82a9; 
  margin: 0;
  padding: 0;
  text-align: justify; 
}

.blinkies {
  color: #ff82a9;
}

.updates {
  color: #ff82a9;
  display:block;
  width: 200%;
}

#kitty {
  width: 100px;
  height: auto;
  display: flex;
}

.kitty {
  padding: 0;
  justify-self: center;
}

.footer-section {
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 20px;
  background: #ffe2ee;
  border-top: 2px dashed #ffb6c1;
  margin-top: 40px;
  font-size: 0.9em;
  color: #844561;
}

.crt::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 20;
    background-size: 100% 2px, 3px, 100%;
    pointer-events: none;
}

.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
display: grid;
grid-template-columns: 0.4fr 1.8fr;
grid-template-rows: auto auto; 
}


.div3 { 
  grid-column: 1 / span 2; 
  color: hsl(338, 100%, 76%);
}

.music-player { 
grid-area: 1 / 1 / 2 / 2; 
display: flex;
flex-direction: column;
align-items: center;
}

.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 2 / 1 / 3 / 3; }
.blinkies { grid-area: 3 / 1 / 4 / 2; }
.updates { grid-area: 3 / 2 / 4 / 3; }

.div2 {
  letter-spacing: 0px;
  padding-top: 35px;
}

.welcome {
  height: 90%;
  width: 200px;
  display: block;         
  margin: 0;
}

.blinkies {
  flex: 0 0 365px;       
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / 2  ;
}

.updates {
  flex: 1 1 0%;
  min-width: 0;           
  box-sizing: border-box;
  height: 254px;
  width: 254px;
}

.updates-site {
  height: 150px;
  overflow-y: auto;
  padding-right: 5px;
  padding-left: 5px;
  scrollbar-width: thin;
  scrollbar-color: hsl(345, 96%, 56%) rgb(255, 226, 237);
  height: 180px;
  margin-top: 0;
  width: 210px
}

P.update1 {
  margin-top: 0 ;
}


/* si l'écran est trop petit, autoriser le wrap en responsive */
@media (max-width: 720px) {
  .parent2 { flex-wrap: wrap; }
  .blinkies, .updates { flex: 1 1 100%; min-width: 0; }
}

.parent2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 5px;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  grid-template-rows: auto auto;
  width: 100%;
  height: 200px;
  padding-bottom: 10px;
}

.blinkies img {
  display: block;
  width: 160px;
  height: 30px;
}

.blinkies img:hover,
.blinkies img:focus-visible {
  transform: scale(1.1);
}

.link-back-text {
  width: 85%;
  height: 80px;
  font-size: 10px;
  font-family: cutesy;
  color: #ad051e;
  background-color: #fff0f6;
  border: 2px dotted #ffb6c1;
  padding: 5px;
  box-sizing: border-box;
  resize: none;
  scrollbar-width: thin;
  scrollbar-color: hsl(345, 96%, 56%) rgb(255, 226, 237);
}

.webrings img:hover,
.webrings img:focus-visible {
  transform: scale(1.1);
}

.my-link-back {
  text-align: center;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.my-link-back img:hover,
.my-link-back img:focus-visible {
  transform: scale(1.1);
}

.gif-on-chatbox {
  width: 204px;
  height: 75px;
  top: 0px;
  left: 0px;
  position: absolute;
  filter: drop-shadow(1px 1px 1px #000000);
  pointer-events: none;
}
