body {
    margin: 0%;
    background-image: url(notepadbackground.png);
    background-size: 50% 50%;
}

@media only screen and (max-width: 600px) {
  body {
    background-image: url(notepadbackground.png);
    background-size:15% 15% ;
  }
}

.myheader {
    height: 220px;
    display: flex;
    background-color: rgb(255, 68, 9);
    justify-content: space-around;
}

.headimages {
    height: auto;
    max-width: 100%;
    width: 160px;
    margin: 1%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spidernames {
    width: fit-content;
    align-items:center;
    justify-content: space-evenly;
    flex-direction: column;
    display: flex;
    margin: 0%;
    padding: 0%;
}

.nametext {
    padding: 0%;
    margin: 0%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: x-large;
    font-weight: 500;
    color: rgb(255, 255, 255);
}

.imageshape {
    border-radius: 50%;
    transition: transform 0.3s;
}

.imageshape:hover {
        transform: scale(1.1);
}

.yellowline {
    display: flex;
    height: 30px;
    background-color: rgb(255, 226, 0);
}

.blueline {
    display: flex;
    height: 10px;
    background-color: rgb(25, 86, 144);
}

.firstbody{
  height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:10%;
}

.stext {

    display: flex;
    justify-content: center;
  
}

.secondbody {
    display: flex; /*DAHA SONRA GRİD'E ÇEVİRCEM*/
    flex-direction: row;
    justify-content: center;
    gap: 3%;
    margin: 10%;
    padding: 0 4px;
  flex-wrap: wrap;
}

.notes {
    word-wrap: break-word;
    color: rgb(25, 86, 144);
    padding: 2%;
    display: flex;
    flex-direction: column;
    width: 1800px;
    height: max-content;
    background-color: rgb(255, 241, 135);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  margin-top: 8px;
  vertical-align: middle;
}

#firstnote {
letter-spacing: 6%;
}

#firstnoteheader {
    display: flex;
}

.ultimatepicture {
    border-radius: 50%;
    display: flex;
    width:80%;
    margin: auto;
    margin-top: 0%;
    margin-bottom: 0%;
}

.ultimatepicture:hover {
    transform: scale(1.1);
}

.myfirstfooter {
    height: 200px;
    display: flex;
    background-color: rgb(255, 68, 9);
    margin-bottom: 4%;
    justify-content:space-between;
    align-items: center;
}

.footercontent {
    align-items: center;
}

.twoboxes {
    padding: 0%;
    display: flex;
    flex-direction: column;
    margin: 0%;
    align-items: center;

}

.footerright {
    display: flex;
    align-items: center;
    margin: 4%;
    float: right;
}

#by {
  display: inline-block;
  color: #FFF;
  font-size: 3.5em;
  padding: 0.2em;
  background-color: rgb(25, 86, 144);
}

.bottomtext {
    text-decoration: none;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    font-size: xx-large;
    margin-left: 60px;
    margin-bottom: 5%;
    margin-top: 8%;
    transition: all 0.3s;
}

.bottomtext:hover {
    transform: scale(1.1);
} 

.scrollbutton {
    font-weight: 500;
    border-radius: 10px;
    height: 56px;
    width: 150px;
    font-family:monospace;
    text-decoration: none;
    background-color: rgb(255, 247, 185);
    font-size: x-large;
    padding: 10px;
    padding-bottom:0%;
    border: solid 12px;
    border-color: rgb(25, 86, 144);
    color: rgb(25, 86, 144);
    margin-bottom:10%;
    margin-left: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.myfooter {
    height: auto;
    display: flex;
    border: solid black 2px;
}

#spider {
cursor: pointer;
    width: 300px;
    height: 300px;
    background: url("Krita\ Drafts\ \(AP\)/spidercycle.png") 0 0 no-repeat;
}

#spider.animate {
    animation: legmove 0.5s steps(3) infinite;
}

.spider {
    display: flex;
    justify-content: center;
}

@keyframes legmove {
    from { background-position: 0 0; }
    to   { background-position: -900px 0; }
}

@media only screen and (max-width: 1000px) {
.spider, #spider {
    display: none;
}
}

@media screen and (max-width: 1500px) {
  .notes {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 800px) {
  .notes {
    flex: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .headimages {
    height: auto;
    max-width: 100%;
    width: 100px;
  }
}

@media screen and (max-width: 750px) {
  .headimages {
    height: auto;
    max-width: 100%;
    width: 70px;
  }
}

@media screen and (max-width: 550px) {
  .headimages {
    height: auto;
    max-width: 100%;
    width: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .nametext {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .footerright, .scrollbutton {
    display: none;
  }
}
