@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #1D2721;
  color: #ffffff;
  text-align: center;
}
header {
  padding: 20px;
  background: linear-gradient(90deg, #229100, #00B398);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.logo {
  width: 130px;
  height: auto;
  border-radius: 10px;
}
.button {
  display: inline-block;
  margin: 15px;
  padding: 12px 25px;
  font-size: 16px;
  color: #ffffff;
  background: linear-gradient(90deg, #229100, #00B398);
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.2s;
}
.button:hover {
  background: linear-gradient(90deg, #e65c00, #d9941a);
  transform: scale(1.05);
}
.info-section {
  margin: 20px;
  padding: 20px;
  background: #2A3B3E;
  border: 4px solid #5FF523;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.info-title {
  font-size: 22px;
  color: #5FF523;
  margin-bottom: 15px;
}
footer {
  background-color: #2A3B3E;
  color: #cccccc;
  padding: 20px;
  font-size: 14px;
}
footer a {
  color: #5FF523;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .button {
    width: auto;
  }
  .info-section {
    max-width: 800px;
    margin: 20px auto;
  }
}

table.table{
	width: 100%;
	border-collapse:collapse;
	border-spacing:0;
	height: auto;
}
table.table,table.table td, table.table th {
	border: 1px solid #595959;
}
table.table td,table.table th {
	padding: 3px;
	width: 30px;
	height: 35px;
}
table.table th {
	    background: #4e6982;
	color: #fff; 
	font-weight: normal;
}
.img-cov {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px auto;
}
.img-cov img {
    border-radius:25px;
    width: 100%;
    height: 100%;

}
@media screen and (max-width: 600px) {
    .content .img-cov {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }
}