html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(10, 10, 10);
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  margin-top: 0;
  margin-bottom: 15px;
}

a {
  color: rgb(213 165 131);
}

.bg {
  z-index: 1;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg,#541391 0,#9c2010 50%,#cc8f0d 100%);
  /*background: radial-gradient(#0467cd, #140248);*/
  /*
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("");
  */
  /*filter: brightness(0.8);*/
}

.content {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100vh;
}

.center-section {
  width: 100%;
  /*height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-box-wrap {
  margin: 20px 0px;
  max-width: 80%;
}

.content-box {
  padding: 30px 30px;
  background-color: rgb(15, 19, 30);
  border-radius: 15px;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  max-width: 80%;
}

.text-center {
  text-align: center;
}

.img img{
    width: 200px;
}

.table td {
    border: 1px solid #fff;
    padding: 5px;
}

.table {
    border-collapse: collapse;
}

.servers iframe {
  width: 400px;
  height: 265px;
  border: none;
  overflow: hidden;
}

@media (max-width: 900px){
  .servers iframe {
    width: 285px;
    height: 400px;
    border: none;
    overflow: hidden;
    transform: scale(0.95);
  }
}