body {
   text-align:center;
   text-decoration:none;
    background-image:url("images/wallpaper2.webp");
    background-repeat:no-repeat;
    background-size:cover;
    font-family:"Comic Sans MS";
    display:flex;
}
.all {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  gap:20px;
  width:100vw;
}
.top {
  background-color:#fff9a6;
  height:100px;
  width:600px;
  border-radius:15px;
  border: 5px dashed white;
}

.stuff {
  display:flex;
  justify-content:flex-start;
  align-content:center;
  flex-direction:row;
  gap:10px;
}

.sidebar {
  width:175px;
  height:500px;
  background-color:#fff9a699;
  border-radius:15px;
  border: 3px solid white;
  padding:5px;
}

.content {
  width:900px;
  height:500px;
  background-color:#fff9a699;
  border-radius:15px;
  border: 3px solid white;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  flex-wrap:wrap;
}

p {
  text-decoration:none;
  line-height:0;
}

a {
  text-decoration:none;
  color:black;
}

.linky {
  height:140px;
  width:140px;
  background-color:#faceca;
  transition:0.3s;
  margin:10px;
  padding:2px;
  color:black;
  text-decoration: none;
  border: 2px solid white;
  border-radius:10px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}

.linky:hover {
  background-color:#fcb3ac;
}

.linky img {
  height:90px;
}

.home {
  background-image:url("images/home.png");
  height:85px;
  width:85px;
  transition:0.4s;
}

.home:hover {
  background-image:url("images/home1.png");
  cursor:pointer;
}

.bleh {
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
}