body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #0a0a0a;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 20px;
}

.logo img {
    width: 300px;
    height: auto;
}

main {
    background-color: #242424;
    padding: 20px;
    text-align: center;
}

body
{
    background-color: #242424;
}

footer {
    background-color: #0a0a0a;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.logo img {
    max-height: 50px;
}

.tagline h1 {
    margin: 0;
    font-size: 2rem;
}

.tagline {
    flex: 1; 
}

.social-media {
    display: flex; 
    gap: 15px; 
    justify-content: flex-end; 
    margin-right: 8px; 
} 

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
}

.card {
    width: 300px;
    margin: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    background: transparent;
}

.card:hover {
    transform: scale(1.02);
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1rem;
    color: #333;
    flex: 1;
    background: inherit;
}

.card-title {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.card-creator {
    font-size: 1rem;
    color: #c5c5c5;
    margin: 0.5rem 0;
    outline: none;
}

.card-creator:focus, .card-creator:active {
    outline: none;
}

.card-description {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    color: #c5c5c5;
}

.card-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: white;
    background-color: #ff0000;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #6e0000;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    position: relative;
    display: inline-block;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.tooltip {
    display: none; 
    position: absolute;
    background-color: #333; 
    color: #fff; 
    padding: 5px 10px; 
    border-radius: 5px; 
    top: 100%; 
    left: 50%;
    transform: translateX(-50%); 
    white-space: nowrap; 
    z-index: 10; 
}

.social-icon:hover .tooltip {
    display: block; 
}

.featured-video h1 {
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center; 
}

.entry-typology h1 {
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center; 
}