
body {
    font-family: 'Arial', sans-serif, 'Segoe UI', Tahoma, Geneva, Verdana;
    margin: 0;
    padding: 0;
    background-image: url(backg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #333;
    text-align: center;
}

/* headers/navbar */
header {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    padding: 20px;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.logo-img {
    width: auto; 
    height: 50px;
    margin-left: 10px; 
}

nav ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Affects FunFact stuff */
.funfacts {
    margin: 50px 0;
}

.funfacts h2 {
    font-size: 28px;
    color: #ff4b2b;
    margin-bottom: 20px;
}

/* anything with bc has to do with the background and animation with the funfacts */
.bc-container {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.bc-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.bc-item.left {
    flex-direction: row;
}

.bc-item.right {
    flex-direction: row-reverse;
}

.backgr {
    background-color: #ff6b6b;
    color: white;
    padding: 15px;
    border-radius: 25px;
    font-size: 1.2em;
    max-width: 60%;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.bc-img {
    max-width: 150px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Scrolling :))))) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.backgr:hover {
    transform: scale(1.05);
}

.cta {
    margin: 40px 0;
    font-size: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ff4b2b;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #ff2b2b;
}
