body{
  font-size: 12px;
  background-color: white;
}

.container{
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

header, main{
  display: flex;
  gap: 10px;
}

.left-side{
  flex: 2;

}

.right-side{
  flex: 1;

}

.address{
  font-size: 12px;
}

h1{
  font-size: 36px;
  margin: 0;
}

h2{
  font-size: 12px;
  text-transform: uppercase;
  color: blue;
  padding-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

main{
  color: gray;
}

.title{
  font-size: 16px;
  margin-bottom: 3px;
  color: black;
}

.date{
  text-transform: uppercase;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
}

.desc{
  margin-top: 5px;
}

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

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Optional spacing */
}

button{
  background-color: blue;
  color: white;  
  border: 0;
  border-radius: 5px;
  padding: 10px;
}

button:hover{
  cursor: pointer;
}
