@font-face {
  font-family: 'Willow';
  src: url(fonts/willow.ttf) format('truetype');
}

* {
  
  box-sizing: border-box;
}

.main_container{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  background-color: #f3d0ff;
  color: rgb(52, 48, 48);
  font-size: 16px;
  font-family: 'Willow';
}

.header_container{
  position: relative;
}

.image{
  width: 100%;
  height: 100%;
}

.header_text{
  position: absolute;
  color: rgb(86, 86, 86);
  top: 50px;
  left: 400px;
  font-weight: bold;
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(177, 176, 176, 0.5);
}

.header_status{
  position: absolute;
  color: rgb(86, 86, 86);
  top: 100px;
  left: 450px;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 2px 2px 4px rgba(177, 176, 176, 0.5);
}

.grid_container{
  margin: 10px;
  padding: 10px;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1em;
}

.box{
  background-color: lightcyan;
  color: lightcoral;
  padding: 5rem;
  box-shadow: 20px 20px 50px 10px pink inset;
}

.activity_status{
  font-size: 14px;
  margin-top: 0;
}

.box:first-child {
  background-color: rgb(237, 183, 252);
  grid-column: 1 / 3;
  padding: 0;
  margin: 0;
}


.image_container {
  display: flex;
  justify-content: space-between; /* first image to left edge, last to right edge */
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.first_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block; /* Prevents unwanted spacing issues */
}

.link_container {
  display: flex;
  justify-content: space-between; /* equal spacing around all links */
  align-items: center;
  width: 100%;
  margin-top: 1rem; /* spacing from content above */
  flex-wrap: wrap; /* optional: allows wrapping on small screens */
}

.links {
  text-decoration: none;
  color: rgb(52, 48, 48);
  font-size: 1rem;
  padding: 0.5rem;
}

.links:hover{
  color: rgb(49, 51, 158);
}

