* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    font-size: 16px;
}

/* navbar */
nav {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background: #000;
    padding: 0 65px;
}

nav img {
    width: 90px;
    max-width: 100%;
}

nav div {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: white;
    color: black;
}

.btn-red-sm {
    background-color: red;
    color: white;
    border: none;
}

.btn-red-sm:hover {
    opacity: 0.9;
}







.content {
    background-color: white;
    padding: 40px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

h1 span {
    color: #e50914;
}

.first,
.second,
.third,
.fourth,
.fifth,
.sixth,
.seventh{
    margin-bottom: 30px;
}



h3 {
    color: #e50914;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* @media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav button {
        width: 100%;
        margin-top: 10px;
    }
} */

@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }
}
