/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    margin: 0;
    min-height: 100vh;
    background-color: #000; /* black background */

    background-image: url('media/background.gif'); /* Add your GIF file here */
    background-repeat: no-repeat;
    background-position: center center; /* Centers the GIF */
    background-size: 600px; /* Adjust the size (higher value = larger image) */
    
    color: #e6e6e6;
    font-family: Consolas, "Courier New", monospace;
    padding-top: 20px; /* Prevents clipping from top */
}

/* Wrapper */
.wrapper {
    display: flex;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 1; /* Ensures content stays on top */
}

/* Main Content */
.content {
    width: 100%;
    max-width: 1100px;
}

/* Paste Box */
.paste {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black for readability */
    padding: 20px;
    line-height: 1.6;
    font-size: 15px;
    white-space: pre-wrap;
    overflow-x: auto;
    border-radius: 10px; /* Rounded corners */
}

/* Face Button */
.face-button-wrapper {
    margin: 25px 0;
    text-align: center;
}

.face-button {
    display: inline-block;
    padding: 12px 30px; /* Symmetric padding */
    background: #111;
    color: #e6e6e6;
    text-decoration: none;
    border: 2px solid #333; /* Border to make the button defined */
    letter-spacing: 2px;
    font-size: 16px; /* Make the font size more readable */
    border-radius: 5px; /* Rounded button edges */
    text-align: center;
    transition: 0.3s ease;
}

.face-button:hover {
    background: #1a1a1a;
    border-color: #777;
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

/* Optional: A background overlay behind content to improve contrast */
.wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
    z-index: -1; /* Behind the content */
}
