header
{
    background-color: rgb(246, 200, 207);
    border-radius: 25px;
    border: rgb(222, 143, 143) 2px outset;
    padding: 25px;
    width: 500px;
    height: 85px;
    
}
i
{
    font-family: serif;
}
body
{
    background-image:url(pc\ wallpaper\ i\ found\ lol.jpg) ;
    color: #4A4A4A;
}
html
{
    cursor: 
      url("download\ \(1\).jpg")
      auto;
}
p
{
    background-color: blanchedalmond;
    font-family: 'Times New Roman', Times, serif;
    font-size:  20px;
    border-radius: 10px;
    padding: 10px;
    width: 60%;
    
}
p::first-letter
{  
    font-size: 300%;
    font-style: italic; 
    font-weight: bold;  
    float:initial;
}
img
{
    width: 80px;
    float: left;
}
h4
{
    font-style: italic;
    
}

h5
{
    font-style: italic;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: cornsilk;
    border-radius: 5px;
    width: 40%;
    padding: 5px;
}

article
{
    background-color:blanchedalmond;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 15px;
    padding: 5px;
    font-size: 20px;
    width: 60%;
}

b
{
    font-size: large;
}
ins{
    font-style: italic;
    background-color: rgb(151, 179, 232);
}
#sn
{
    width: 40%;
    border-radius: 15px;
}
div
{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer
{
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    color: rgb(74, 8, 49);
    text-align: center;
    background: rgba(255, 205, 205, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(62, 58, 58, 0.2);
}
#menuToggle
{
  display: block;
  position: fixed;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #690e3d;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: lightcoral;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0;
  z-index: 2; 
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #1e1111;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #ed8383;
}


#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  max-width: 250px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background:cornsilk;
  list-style-type: none;
  height: 900px;
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}