/* Reset some default styles */
body, h1, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    background-color: #333;
}

header {
    background-image: linear-gradient(to bottom, rgba(51, 51, 51, 0), rgba(51, 51, 51, 0.85)), url(images/284612486189dajhas871faafsaAD164.png);
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.logo img {
    width: 100px;
    height: auto;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}
nav ul li a:hover{
    text-shadow: 0 0 5px rgb(255, 172, 172), 0 0 10px rgb(255, 172, 172), 0 0 15px rgb(255, 172, 172);
}
#active{
    text-shadow: 0 0 5px rgba(253, 154, 40, 0.63), 0 0 10px rgb(253, 154, 40, 0.63), 0 0 15px rgb(253, 154, 40, 0.63);
}
#active:hover{
    text-shadow: 0 0 5px rgba(255, 175, 83, 0.63), 0 0 10px rgb(255, 175, 83, 0.63), 0 0 15px rgb(255, 175, 83, 0.63);
}


.most-wanted {
    text-align: center; /* Center align the content */
    margin-top: 5%;
    color: #fff;
}

.person-info {
    display: inline-block; /* Display as inline block to position side by side */
    margin: 0 20px 20px; /* Adjust spacing between each person-info block */
    vertical-align: top; /* Align the top edge of the blocks */
    text-align: center; /* Center the content inside the person-info block */
    margin-top: 2%;
}

.person-info img {
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
    box-shadow: 0 0 5px rgb(247, 73, 73), 0 0 10px rgb(247, 73, 73), 0 0 15px rgb(247, 73, 73);
}

.person-info button {
    display: block;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin: 20px auto 0; /* Add margin to create space between the button and the image */
    box-shadow: 0 0 5px rgb(247, 73, 73), 0 0 10px rgb(247, 73, 73), 0 0 15px rgb(247, 73, 73);
}


.person-info button:hover {
    box-shadow: 0 0 5px rgb(255, 125, 125), 0 0 10px rgb(255, 125, 125), 0 0 15px rgb(255, 125, 125);
    background-color: rgb(255, 61, 61);
    cursor: pointer;
}

.info-box {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.info-box .content {
    background-color: #0000008a;
    margin: 10% auto;
    padding: 20px;
    border: 0 0 5px rgb(253, 40, 40), 0 0 10px rgb(253, 40, 40), 0 0 15px rgb(253, 40, 40);
    width: 60%; /* Adjust the width of the content box */
    max-width: 600px; /* Set a maximum width to ensure readability */
    border-radius: 10px; /* Add some rounded corners */
    box-shadow: 0 0 5px rgb(253, 40, 40), 0 0 10px rgb(253, 40, 40), 0 0 15px rgb(253, 40, 40); /* Add a shadow for depth */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.info-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

footer {
    background-color: #212529;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column p {
    margin-bottom: 5px;
    font-size: 14px;
}


.social-icons {
    display: flex;
    justify-content: center; /* Center horizontally */
    margin-bottom: 20px; /* Add margin at the bottom */
}

.social-icons .icon {
    font-size: 18px;
    color: #fff;
    margin: 0 5px; /* Add margin between icons */
}

.social-icons .icon:last-child {
    margin-right: 0; /* Remove margin from the last icon */
}



.copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
}
.icon{
    transition: 0.3s ease;
}
/* Hover effect for Twitter icon */
#twitter:hover {
    color: #1da1f2; /* Twitter brand color */
}

/* Hover effect for Instagram icon */
#youtube:hover {
    color: #ff0000; /* Instagram brand color */
}

#discord:hover {
    color: #5865F2; /* Change this to the desired color on hover */
}
a{
    color: #fff;
}
