@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
  margin: 10px;
  font-family: 'Roboto', sans-serif;
}

#header {
    width: 90%;
    height: 300px;
    overflow: hidden;
    position: relative;
    resize: both;
    border: 3px solid #000;
}

#header img {
    position: absolute;
    top: 0;
    left: 0;
}

.interact {
    position: absolute;
    bottom: 10px;  /* Positioned at the bottom of the container */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(100, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
    z-index: 10;  /* Ensure it's above the image */
}

tr.heading {
  font-weight: bold;
}

.info {
 font-size: 20px;
}

/* make github link black */
.icon{
  color: black;
}

