@font-face {
  font-family: "IBM Plex Mono";
  src: url("./font/ibm-plex/IBMPlexMono-Regular.woff")
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("./font/ibm-plex/IBMPlexSans-Regular.woff")
}
@font-face {
  font-family: "IBM Plex Serif";
  src: url("./font/ibm-plex/IBMPlexSerif-Regular.woff")
}

html {
	font-family: "IBM Plex Sans", sans-serif;
	background: url("./img/bg.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	color: #010101;
	margin: 0;
	/*height: 100%*/
}

.top-box {
  position: relative;
  margin: 0 auto;
  background: #eeeeee;
  border: 3px solid #66aacc;
  box-shadow: 0 0 5px #66aacc, 0 0 15px #66aacc, 0 0 25px #66aacc;
  width: 65%;
  margin-top: 50px;
  margin-bottom: 25px;
  padding: 35px;
}

.mainbody {
  position: relative;
  margin:0 auto;
  background: #eeeeee;
  border: 3px solid #66aacc;
  box-shadow: 0 0 5px #66aacc, 0 0 15px #66aacc, 0 0 25px #66aacc;
  width: 65%;
  margin-top: 25px;
  margin-bottom: 50px;
  padding: 35px
}

h2 {
  margin:0 auto;
  font-size: 20px;
}


p {
  margin:0 auto;
  font-size: 18px;
  margin-bottom:10px;
}

pre {
  
  font-family: "IBM Plex Mono";
}

.container {
    display: flex;
    justify-content: space-between;
}

.left-content {
    flex: 1;
    background-color: #eeeeee;
    padding: 20px;
    width:70%
}

.right-buttons {
    /* flex: 1; */
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
}


.button {
    width: 200px;
    height: 60px;
    text-decoration: none !important;
    font-weight: 600;
    margin: 10px 0;
    color: white;
    background-color: #999999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0; /* No margin to remove space */
}

.button:hover {
    background-color: #ff9819; /* Change to a different color on hover */
}

.rounded-rect-image {
  width: 300px;
  height: 200px;
  clip-path: inset(0 round 20px);
  object-fit: cover; /* Ensures the image covers the container */
  display: block; margin-left: auto; margin-right: auto;
}

@media screen and (max-width: 768px) {
  .mainbody, .top-box {
    width: 90%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 12px;
  text-align: left;
  border: 1px solid #66aacc;
}

th {
  background-color: #eeeeee;
  font-weight: bold;
}
