
* {

    font-size: 28pt;
}

html,body {
    background: #c1cbff;
    min-height: 100%;
    width: 100%;
    font-family: sans-serif;
}

#logo {
    margin: 0 auto;
    text-align: center;
}

p {
    margin: 0;
}

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.mostly-middle {
    margin: 0 auto;
    display: block;
    width: 80%;
    text-align: center;
}

.btn {
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    display: inline-block;
    margin: 10px;
}

.contact-row {
    text-align: left;
    padding: 20px;
    margin: 30px;
    min-height: 50px;
    clear: both;
}

.col-left {
    float: left;
    width: 25%;
}

.col-right {
    float: right;
    width: 75%;
}

.col-right textarea, .col-right input, .col-right select {
    width: 90%;
    background: transparent;
    border-radius: 10px;
}

.matrix-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.matrix-text {
  color: #000;
  font-family: monospace;
  position: relative;
  top: -80px;
  left: 140px;
  text-shadow: 0 0 10px #0f0, 0 0 20px #00f, 0 0 30px #0f0;
  z-index: 2; /* Ensure it stays above the rain effect */
}

.matrix-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: glitch 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
  color: #0f0;
  text-shadow: 0 0 5px #0f0, 0 0 15px #0f0;
}

/* Glitch effect for the text */
@keyframes glitch {
  0%, 100% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(0);
  }
  33% {
    clip-path: polygon(0 0, 100% 0, 100% 15%, 0 15%);
    transform: translate(-5px, -5px);
  }
  66% {
    clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%);
    transform: translate(5px, 5px);
  }
}

