.log-container {
  position: relative;
  //overflow: hidden;
  width: 100%;
  height: 600px;
  border: 0px;
}

.responsive-iframe {
  border: 0px;
  //position: absolute;
  //top: 0;
  //left: 0;
 // bottom: 0;
  //right: 0;
  width: 100%;
  height: 100%;
}

.content {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-card h1 {
	font-size: 1.5em;
	text-align: center;
	padding-bottom: 20px;
}

.content-content {
    margin-bottom: 20px;
    color: var(--dark);
}

.content-content p {
    margin-bottom: 10px;
}