body{
    height: 100vh;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 100px 10fr 30px;
}

#topside{
    grid-column: 1/4;
    grid-row: 1;
    background: #233142; 
}

#leftaside{
    grid-column: 1/2;
    grid-row: 2;
}

#container{
    grid-column: 2/3;
    grid-row: 2;
    background: #455d7a; 
    position: relative;
}

#leftaside{
    grid-column: 3/4;
    grid-row: 2;
}

footer{
    grid-column: 1/4;
    grid-row: 3;
    background: #e3e3e3;
}

a {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% / 5 - 20px); 
}

.article-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 300px;
  width: calc(100% - 20px); 
  padding: 10px;
  margin: 10px;
  background-color: #e3e3e3;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
  
.article-item h1 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}
  
.article-item dd {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #888;
}
  
.article-item img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

#article-list {
    display: flex;
    flex-wrap: wrap;
}
  
#buttonplacement{
  width: 100%;
  display: flex;
  justify-content: center;

  position: absolute;
  bottom: 0;
  padding: 10px;
  margin: 10px;
}

#logobox{
  width:70px;
  height: 60px;
  padding: 10px;
  margin: 10px;
  background-color: #f95959;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  font-size: 1.5rem;
}

.cbcolor{
  background: #233142; 
}

.button{
  background-color: #f95959;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

