* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    background-image: url('background.gif');
    background-repeat: repeat;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px;
    cursor: url('cursor.cur'), auto;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-section h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 3px 3px 0px #FF0000;
    letter-spacing: 5px;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-link {
    background-color: #FF0000;
    color: #000;
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #000;
    transition: all 0.2s;
    width: 100px;
    text-align: center;
}

.nav-link:hover {
    background-color: #CC0000;
}

.nav-link.active {
    background-color: #fff;
    color: #000;
}

.content-box,
.social-box,
.donate-box {
    background-color: rgba(0, 0, 0, 0.8);
    border: 3px dotted #fff;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.content-box h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.content-box p {
    line-height: 1.6;
}

.social-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-btn {
    background-color: #FF0000;
    color: #000;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    width: 200px;
    border: 2px solid #000;
    transition: all 0.2s;
}

.social-btn:hover {
    background-color: #CC0000;
}

.donate-box {
    padding: 20px;
}

.donate-btn {
    background-color: #0066FF;
    color: #000;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    width: 200px;
    border: 3px solid #000;
    transition: all 0.2s;
}

.donate-btn:hover {
    background-color: #0052CC;
} 

.social-btn,
.writing-link,
.donate-btn,
.nav-link {
    border: 2px solid #000 !important;
    text-decoration: none !important;
}

.social-btn:hover,
.social-btn:active,
.social-btn:focus,
.writing-link:hover,
.writing-link:active,
.writing-link:focus,
.donate-btn:hover,
.donate-btn:active,
.donate-btn:focus,
.nav-link:hover,
.nav-link:active,
.nav-link:focus {
    border: 2px solid #000 !important;
    text-decoration: none !important;
}

#video-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#video-container iframe {
    width: 100%;
    height: 250px;
}

#video-container iframe:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    margin: 0 auto;
    max-width: 560px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* .photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 2px solid #fff;
} */

.photo-grid img {
    width: 100%;
    height: auto;
    border: 2px solid #fff;
}

.writing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.writing-link {
    background-color: #FF0000;
    color: #000;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    transition: all 0.2s;
}

.writing-link:hover {
    background-color: #CC0000;
}

.error-gif {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.header-gif {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

a {
    text-decoration: none !important;
}