@font-face {
    font-family: JetBrainsMonoNL-Bold;
    src: url("../assets/fonts/JetBrainsMonoNL-Bold.ttf");
}

@font-face {
    font-family: JetBrainsMonoNL-Regular;
    src: url("../assets/fonts/JetBrainsMonoNL-Regular.ttf");
}

body {
    font-family: JetBrainsMonoNL-Bold;
    background-color: #282c33;
    color: #acb2be;
    padding: 20px;
}

* {
  box-sizing: border-box;
}

nav {
    overflow: auto;
    white-space: nowrap;
}

ul {
  list-style-type: none; /* Removes default bullet points */
  margin: 0; /* Removes default outer margin */
  padding: 0; /* Removes default inner padding/indentation */
  display: flex; /* Arranges list items horizontally using Flexbox */
  margin-left: 32px;
  overflow: auto;
  white-space: nowrap;
}

li {
  /* Optional: Add custom spacing between list items if 'gap' is not used */
}

p {
    font-family: JetBrainsMonoNL-Regular;
    margin-top:-5px;"
}

h1 {
    font-size: 14pt;    
    word-break: break-all;    
}

h2 {
    font-size: 12pt;    
}

img {
   border-radius: 5px;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center; 
}

.a_tab {
    text-decoration: none;
    background-color: #2f343e;
    color: #acb2be;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 16px 24px;
    transition: 0.3s;
    font-family: JetBrainsMonoNL-Regular;
    font-size: 14pt;  
}

.a_tab:hover {
    background-color: #4d5159;
}

.a_tab_active {
    text-decoration: none;
    background-color: #757981;
    color: #282c33;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 16px 24px;
    transition: 0.3s;
    font-family: JetBrainsMonoNL-Regular;
    font-size: 14pt;    
}

.a_hyperlink {
    font-family: JetBrainsMonoNL-Bold;
    color: chartreuse;  
}

.a_hyperlink_footer {
  text-decoration: none;
  color: #acb2be;
  font-family: JetBrainsMonoNL-Regular;
  margin-top: -5px;
}

.header {
    margin-right: 20px;
    text-align: right;
    color: chartreuse;
}

.header_alt {
  position: relative; 
    width: 100%;
    height: 320px;
}

.header-image {
  position: absolute; 
  top: 5px; 
  right: 10px; 

}

.contact {
    text-align: center;
    clear: both;
    position: relative;
    margin-top: 10px;
    color: #acb2be;
}

.text {
    text-align: center;
    color: #acb2be;

}

/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #2f343e;
}

/* Style the tab content */
.tabcontent {
    display: flex;
    flex-direction: column;
    padding: 6px 12px;
    border-top: none;
    margin-left: 25px;
    margin-top: 50px;
    min-height: calc(100vh - 240px);
}

.horizontal-container {
    display: flex;
    justify-content: flex-start;
}

/* Center website */
.main {
  max-width: calc(100% - 40px);
}


.row {
  margin: -8px -16px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create two equal columns that float next to each other */
.column {
  float: left;
  width: 25%;
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: #2E323A;
  padding: 10px;

  position: relative;
  min-height: 880px;
  border-radius: 10px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1500px) {
  .column {
    width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .column {
    width: 100%;
  }
}

input[type="text"] {
  font-family: JetBrainsMonoNL-Regular;
  font-size: 12pt;
  width: 450px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

input[type="email"] {
  font-family: JetBrainsMonoNL-Regular;
  font-size: 12pt;
  width: 450px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

textarea {
  font-family: JetBrainsMonoNL-Regular;
  font-size: 12pt;
  width: 450px;
  min-height: 200px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

input[type="submit"]:disabled {
  background-color: gray;
  cursor: not-allowed;
}