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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

header {
    background-color: transparent;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav-item {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

main {
    margin-top: 60px;
}

.slider {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
    height: 100%;
}

.slide {
    min-width: 100vw;
    height: 100vh;
    position: relative;
}

.slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.text-content {
    position: absolute;
    bottom: 80px;
    left: 20px;
    right: 20px;
    text-align: center;
    z-index: 5;
}

.text-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 16px;
    color: #ccc;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 5;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    background-color: red;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #e50914;
    padding: 15px;
    text-align: center;
    z-index: 10;
}

footer a button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
