body {
    background-color: #383127;
    font-family: monospace;
    font-size: 15px;
    color:#f7b360;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: auto;
}

.columns {
    display: flex;
    gap: 10px;
    margin-left: 10%;
    margin-right: 10%;
    height: 100vh;
}

.column1 {
    flex: 2;
    background-color: #383127;
    border: 2px dashed #f7b360;
    padding-left: 20px;
    padding-right: 20px;
    max-height: 100vh;
}

.column2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.column3 {
    background-color: #383127;
    border: 2px dashed #f7b360;
    padding: 5px;
}

.column4 {
    flex: 1;
    background-color: #383127;
    border: 2px dashed #f7b360;
    padding: 20px;
    overflow-y: auto;
    max-height: 100vh;
}

#webring {
    background-color: #383127;
    border: 2px dashed #f7b360;
    padding: 10px;
    text-align: center;
}

#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background-color: rgb(56, 49, 39);
    border: 2px dashed rgb(247, 179, 96);
    font-size: 10px;
}

table, th, td {
    border: 2px dashed #f7b360;
    border-collapse: collapse;
    padding: 4px;
}

button {
    background-color: #383127;
    border: 2px dashed #f7b360;
    font-family: monospace;
    color: #f7b360;
    width: 100px;
    text-align: center;
    margin: 4px;
    align-content: center;
}

a {
    color: #f7b360;
    text-decoration: none;
}

a:hover {
    font-size: 15px;
}

hr {
    border-top: 2px dashed #f7b360;
    border-bottom: 0px;
    width: 200px;
}

iframe {
    border: 2px dashed #f7b360;
    width: 700px;
    height: 200px;
}


/* fuckass crt effect fuck (był ten flickering ale usunąłem bo mnie WKURWIAŁ) */

body::before {
content: " ";
display: block;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
z-index: 2;
background-size: 100% 2px, 3px 100%;
pointer-events: none;
}

body::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}