
* {
    box-sizing: border-box;
}

footer {
    background-color: var(--cafe_green);
    height: 40px;
    padding: 10px;
    color: #8ab2b1;
    text-align: center;
    margin-top: 10px;
    display:flex;
    align-items: center;
    width:100%;
    border-radius: var(--roundness) var(--roundness) 0px 0px;
}

aside {
    border-radius: 25px;
    width: 30%;
    padding: 20px;
}

#flex {
    display: flex;
    align-items: flex-start;
}


.main {
    flex: 1;
    order: 2;
    margin-bottom: 10px;
}

 .contentaboutme {
    margin-bottom: 10px;
}




.endofsection {
    border-radius: 0px 0px var(--roundness) var(--roundness);
}


#topBar {
    display: flex;
    justify-content: space-between;
    padding-right: 5px;
}

#header {
    width: 100%;
    background-image: var(--header-image);
    background-size: cover;
    background-position: center;
    height: 270px;
}

/* navigation section!! */
#navbar {
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 50%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
    align-items: center;
}

#sidebar {
    order: 1;
}

.collapsableimage {
  height:230px;
  filter: drop-shadow(-5px 5px 5px black);
}

.paddingimages h2 {
  color: white;
}


.box {
  background-image: var(--box-bg-image-2), url('https://bloogblogger.neocities.org/elements/texture/1.png');
  background-blend-mode: luminosity;
  margin-bottom: 10px;
}

.box p {
  color: black;
}

.asideiconholder{
    display: flex;
    justify-content: space-between;
    color: var(--lepurple);
}

.gificon{
    filter: drop-shadow(-5px 5px 5px black);
}

.usericon{
    height: auto;
    border-width: thick;
    background-color: #0000004f;
    border-radius: var(--roundness);
}


.dropdown {
    position: relative;
    display: inline-block;
  }
  
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 200px;
    padding: 10px 10px;
    border-radius: var(--roundness);
    z-index: 1;
    right: 0;
  }
    
.dropdown:hover .dropdown-content {
    display: block;
  }


.bars {
    background-image: linear-gradient(to right, #1d4137, #577e64, #1d4137);
    box-shadow: -5px -5px 5px #86aca1 inset;
    height: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
    position: sticky;
    top: 0;
}

.wood {
    display: flex;
    margin-bottom: 10px;
    justify-content: start;
    height: 70px;
    background-image: url(elements/texture/5.jpg), url(elements/texture/divgloss3.png);
    background-blend-mode: hard-light;
    box-shadow: 0px 0px 10px black inset;
    background-position: left;
    background-repeat: round;
}

.followbutton {
  align-self: center;
  padding: 8px;
  border-radius: var(--roundness);
  filter: drop-shadow(0px 5px 7px #222222);
}





@media only screen and (max-width: 800px) {
  aside {
      width: 100%;
  }

  .main {
      order: 1;
  }
  
  .collapsableimage {
    height:150%;
    display: none;
  }      
  
  #flex {
      flex-wrap: wrap;
  }
              
  #header {
    height: 100px;
  }
  
  #navbar {
    height: 65px;
  }

  #sidebar {
      order: 2;
  }
}
