/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1c1fc4e3;
    color: #e2e2e2;
    text-align: center;
}

/* Container for the whole page */
.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #03254c;
    border-radius: 10px;
}

/* Header Section */
.header {
    margin-bottom: 20px;
}

.header img.profile-icon {
    width: 50%;
    height: 80px;
    border-radius: 30%;
}

.header h1 {
    font-size: 24px;
    margin: 10px 0;
}

/* Carousel Section */
.carousel {
    position: relative;
    margin-bottom: 20px;
}

.carousel .slides {
    
    position: relative;
    overflow: hidden;
    height: 350px;
}

.carousel-img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.carousel button.prev,
.carousel button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}

.carousel button.prev {
    left: 0;
}

.carousel button.next {
    right: 0;
}

/* Buttons Section */
.links {
    margin-bottom: 20px;
}

.links .btn {
    display: block;
    background-color: #4caf50;
    color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.links .btn:hover {
    background-color: #45a049;
}

/* Subscribe Section */
.subscribe .subscribe-btn {
    background-color: #ff5722;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.subscribe .subscribe-btn:hover {
    background-color: #e64a19;
}
.subscribe .subscribe-btn a {
    text-decoration: none;
}