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

/* Body styles */
body {
    background-image: url("assets/img/bg/gay-matrix.gif");
    background-repeat: repeat;
    color: white;
    font-family: monospace;
    text-align: center;
    padding: 20px;
}

/* Info box styles */
.info {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    background-color: black;
    border-radius: 5px;
    border: 2px solid blue;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.info h1, .info h3, .info h4 {
    color: white;
    text-align: center;
}

.info h4 {
    margin-top: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: blue;
    text-decoration: none;
    font-size: 18px; /* Increase font size */
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #0000FF;
    text-decoration: underline;
}

.check-link {
    background-color: #2c3e50; /* Match with border color */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold; /* Make the text bold */
    font-size: 16px; /* Adjust font size */
    font-family: monospace; /* Ensure monospace font */
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.check-link:hover {
    background-color: #1a242f; /* Darker shade on hover */
    transform: scale(1.05);
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .info {
        padding: 15px;
    }

    ul li {
        margin-bottom: 8px;
    }

    a {
        font-size: 16px;
    }

    .check-link {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info {
        padding: 10px;
    }

    ul li {
        margin-bottom: 6px;
    }

    a {
        font-size: 14px;
    }

    .check-link {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Additional styles for better readability */
.info p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.info strong {
    display: block;
    margin-top: 10px;
    color: yellow;
    font-size: 14px;
}

.info a {
    word-break: break-word;
}
