:root {
  --mainfont: 'Arial', Arial, monospace;
  /* new */
  --maincolor: #82b0e0;
  --warningcolor: #e08282;
  --backgroundimage: url("https://vigyor.hu/new.svg");
}

html,
body,
center {
  height: 100%
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-attachment: fixed;
  background-size: cover;
  font-family: var(--mainfont);
  color: var(--maincolor);
  background-color: rgb(167, 185, 209);
  background: var(--backgroundimage) 0 / cover fixed;
}

.tocenter {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
}

.maincontainer {
  width: 90%;
  padding-bottom: 30px;
  padding-top: 30px;
}

@media (max-width: 1020px) {
  .maincontainer {
    width: 100%;
  }

  .maincontainer:last-of-type {
    padding-bottom: 0px;
  }
}

.subcontainer {
  padding: 0px;
  margin: 20px 0px;
}

.maincontainer .subcontainer:first-of-type {
  margin-top: 0px;
}

.maincontainer .subcontainer:last-of-type {
  margin-bottom: 0px;
}

.flexcontainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.smallcontainer {
  width: 400px;
  padding: 0px;
  margin: 10px;
}

.maintitle {
  font-family: var(--mainfont);
  font-size: 800%;
}

.secondarytitle {
  font-family: var(--mainfont);
  font-size: 200%;
  padding: 10px;
  margin-block-start: 0px;
  margin-block-end: 0px;
}