body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #121212;
    color: white;
    overflow-x: hidden; 
    width: 100vw; 
    box-sizing: border-box;
}

.smooth-scroll {
    overflow: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; 
    box-sizing: border-box; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.cta {
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 50px;
    background: url('/website recs/challenge 2/img/saul-goodman-better-call-saul.gif') center/cover no-repeat;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-text {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}

.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    padding: 50px;
    text-align: center;
    position: relative;
}

.stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px;
    background: #121212;
}

.stats-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
}

.stats-text {
    font-size: 2rem;
}

#model-container {
    width: 800px;
    height: 800px;
    border: 2px solid black;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #585959;
    position: relative;
}