/* ======================= */
/* Base & Typography */
/* ======================= */

body {
    font-family: 'Fira Code', monospace;
    background-color: #000000;
    background-repeat: repeat;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre-big.png');
    color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    letter-spacing: 1.5px;
    cursor:url('/image/cursor/cursor.png') 10 10, default;
    overflow-y: auto;
    animation: flashRed .1s infinite;
}
.point{
    margin-left:auto;
     margin-right:auto;
     width: 2%; 
     height: auto;
}
@keyframes flashRed {
    0%   { background-color: #850000; }
    20%  { background-color: #0e0000; }
    40%  { background-color: #0e0000; }
    60%  { background-color: #1a0000; }
    80%  { background-color: #130000; }
    100% { background-color: #0e0000; }
}
h1, h2 {
    margin: 0;
}

h1 {
    font-family: 'Press Start 2P', cursive;
    font-weight: 200;
    font-size: 36px;
    text-transform: lowercase;
    display: inline-block;
}

h2 {
    font-family: 'Jersey 10', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.white { color: #fff; }

li { margin-left: 20px; }

a {
    text-decoration: none;
    font-family: "Fira Code", monospace;
    font-size: 17px;
    color: #fff;
    transition: color 0.3s ease-in-out;
    cursor:url('/image/cursor/cursor.png') 10 10, default;
}

a:hover{
    text-decoration: underline;
    color: #aa0000;
}
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    cursor: url('/image/cursor/cursor.png') 10 10, pointer;
}
button:hover {
    color: #aa0000;
    border-color: #aa0000; 
    cursor:url('/image/cursor/cursor.png') 10 10, default;
}
button{
    color:white;
    background-color: rgb(0,0,0,0); 
}
textarea:hover {
    color: #aa0000;
    border-color: #aa0000; 
}
textarea:focus {
    outline: none;         
    border-color: #aa0000;  
    color:red;
    box-shadow: none;      
}
textarea{
    width : 100%; height: 100px; 
    background-color: rgb(0,0,0,0); 
    color:white;
    border: 1px solid white;
    resize:vertical;
}
img {
    image-rendering: pixelated;
    width: auto;
    height: auto;
    max-width: 100%;
}

/* ======================= */
/* Layout & Containers */
/* ======================= */

.main-container {
    width: 750px;
    margin: 4rem auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right:10px;
    padding-left:10px;
    background-color: rgba(0,0,0,0.95);
    /* Add your image background below: */
    background-image: url('/image/main/containerbg.jpg');
    image-rendering: pixelated;
    background-size: cover;         /* or contain, or 100% 100% depending on effect */
    background-repeat: no-repeat;   /* don't tile the image */
    background-position: center;    /* center the image */
    border-radius: 3px;
    box-shadow: 0 0 100px rgba(255, 116, 116, 0.144);
}
.content {
    display: flex;
    gap: 10px;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sections */
section {
    padding: 15px 20px;
    border-radius: 3px;
}

/* Footer */
footer {
    text-align: center;
    color: #fff;
    margin-top: 40px;
    padding: 10px 0;
}
/* Fade In/Out Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.page-fade {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}
.page-fade-out {
  animation: fadeOut 0.6s forwards;
}