body {
    background-color: #ff00ff; /* Bright Pink */
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", cursive; /* Keeps that 2000s energy */
    overflow: hidden;
}

#main-container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    height: 100vh;
}

/* LEFT COLUMN */
#left-side {
    width: 55%;
}

.glitch-text {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    font-size: 32px;
    color: #000;
    text-transform: uppercase;
    line-height: 0.9;
}

.small-text {
    color: #800080; /* Darker purple */
    font-size: 18px;
    margin-top: 20px;
}

.linkz-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 150px;
}

.take-this {
    color: #00ffff; /* Cyan */
    font-size: 24px;
    font-weight: bold;
}

.linkz-label {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    font-size: 35px;
}

.meme-pic {
    margin-top: 50px;
    width: 300px;
    border: none;
}

/* RIGHT COLUMN */
#right-side {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

.white-box {
    background: #fff;
    border: 3px solid #000;
    padding: 15px;
    font-size: 22px;
    color: #000;
}

.white-box a {
    color: #008080; /* Teal links */
}

.back-link {
    text-align: right;
    margin-top: 40px;
}

.back-link a {
    color: #808080; /* Grey back link */
    text-decoration: none;
    font-size: 24px;
}