/* General Styles */
body {
    background-color: black;
    color: white;
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Radio';
    src: url('./radio-stars.regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

/* Make the canvas stay in the background */
#networkCanvas {
    position: fixed; /* Stays fixed behind everything */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Push it to the back */
}

/* Center hero text and bring it above the canvas */
.hero-content {
    position: relative;
    z-index: 10; /* Ensures it's above the canvas */
    text-align: center;
    padding: 20vh 5vw; /* Add horizontal padding */
}

/* Styling for text */
h1 {
    font-size: 4rem;
    color: red;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Radio";
}

h2 {
    font-size: 2rem;
    color: red;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Radio";
}

h3 {
    font-size: 1.5rem;
    color: red;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Radio";
}

p {
    font-size: 1.5rem;
}

/* Ensure sections have enough spacing */
section {
    position: relative;
    z-index: 10; /* Keeps all content above the canvas */
    padding: 10vh 5vw; /* Add padding to avoid text touching edges */
    max-width: 900px;
    margin: 0 auto; /* Center the content */
}

/* Fix Links - Make them Red */
a {
    color: red;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff5555; /* Slightly lighter red on hover */
}

/* Style Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(230, 0,0, 0.8);
    color: black;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff5555;
}

/* Footer */
footer {
    text-align: center;
    padding: 3vh 0;
    font-size: 1rem;
    color: gray;
}
/* Ensure logo is centered and responsive */
.logo {
    width: 100%; /* Default size */
    max-width: 80vw; /* Prevents it from being too large */
    height: auto;
    margin-bottom: 20px;
}

/* Keep the hero section centered */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20vh 5vw;
}

/* Adjust on smaller screens */
@media (max-width: 768px) {
    .logo {
        width: 180px;
    }
}
