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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: black;
    color: white;
}

/* Header Styling */
header {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Centering the logo container */
header .logo-container {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center;
    text-decoration: none;

}

/* Logo Styling */
.suckerme-logo {
    font-size: 3rem;
    font-weight: bold;
    color: #EC2400;
    text-decoration: none; /* This removes the underline */
    display: inline-block; /* Ensures proper styling */
    text-align: center; /* Ensures text inside is centered */
}

.tagline, .tagline span {
  color: white ;
 font-size: 1.0rem;
}

/* Prevents underline on hover */
.suckerme-logo:hover {
    text-decoration: none;
}

/* Font Styling */
.times-text {
    font-family: "Times New Roman", serif;
}

.arial-text {
    font-family: Arial, sans-serif;
}
@media screen and (max-width: 768px) {
    .suckerme-logo {
        font-size: 2rem;
    }
header {
    padding: 0;
}
  .tagline,
  .tagline span {
   font-size: 0.8rem;
  }
}   


/* FOOTER CSS */
/* Footer Styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EC2400;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #EC2400;
}
