html:root{
    --bg-color: ;
}

html{
  background-image: url(images/sunsetbg.png);
  background-size: 100%;
}

nav {
  width: 100%;
}

#topbanner {
  width: 100%;
}

#buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red;
}

#buttons a {
  margin: 10px;
}

#sidebargroup{
    background-color: yellow;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 35px 0px;
    padding: 1% 0;

}



@media only screen and (max-width: 1115px) {
  #sidebargroup {
    width: 100%;
  }
}

@media only screen and (max-width: 850px) {
  #sidebargroup {
    display: flex;
  }
}

@media only screen and (max-width: 700px) {
  #sidebargroup {
    display: block;
  }
}



#leftsidebar{
    width: 100%;
    max-width: 420px;
    background-color: red;
}

@media only screen and (max-width: 1115px) {
  #leftsidebar {
    width: 80%;
  }
}

@media only screen and (max-width: 850px) {
  #leftsidebar {
    max-width: none;
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  #leftsidebar {
    width: 100%;
  }
  #thoughts {
    max-width: 60%;
  }
}


#statuscafe {
  display: flex;
  width: 100%;
  height: 150px;
  align-items: center;
  flex-direction: column;
}


#thoughts {
  background-color:white;
  justify-content: center;
  text-align: center;
  width: 85%;
  padding: 20px 10px;
  border: black solid thick;
  border-radius: 50px;
}




#mainsidebar {
    width: 100%;
    max-width: 920px;
    background-color: green;
}

@media only screen and (max-width: 1115px) {
  #mainsidebar {
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  #mainsidebar {
    width: 100%;
  }
}



#rightsidebar {
    width: 100%;
    max-width: 420px;
    background-color: blue;
}

@media only screen and (max-width: 1115px) {
  #rightsidebar {
    width: 80%;
  }
}

@media only screen and (max-width: 850px) {
  #rightsidebar {
    width: 100%;
    max-width: none;
  }
}

@media only screen and (max-width: 700px) {
  #rightsidebar {
    width: 100%;
  }
}

.img-container{
  width: 100px;
  height: 100px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-radius: 100px;
}

#main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#welcome_card {
  text-align: center;
  padding: 20px;
  max-width: 420px;
  width: 100%;
  background-color: red;
}

.button {
  font-size: 15pt;
  text-decoration: none;
  background-color: white;
  border-radius: 5px;
  padding: 10px;
}


.center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flex {
  display: flex;
}

.flexvert {
  flex-direction: column;
}