File size: 2,682 Bytes
2e720f3 7eb337c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #1a1a1a;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.carousel {
width: 100%;
max-width: 900px;
margin: 20px;
position: relative;
overflow: hidden;
}
.slide {
display: none;
padding: 30px;
border-radius: 15px;
background-size: cover;
background-position: center;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
.slide.active {
display: block;
opacity: 1;
}
.slide h1 {
font-size: 2.8em;
text-align: center;
margin-bottom: 15px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.slide h2 {
font-size: 1.8em;
text-align: center;
margin-bottom: 15px;
color: #ffd700;
}
.slide p {
font-size: 1.2em;
text-align: center;
line-height: 1.6;
}
.slide ul {
list-style: disc;
padding-left: 25px;
font-size: 1.15em;
margin: 15px 0;
}
.slide img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 20px;
border: 2px solid #ffd700;
}
.split {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.split > div {
flex: 1;
min-width: 280px;
}
.grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
align-items: center;
}
.flex-center {
display: flex;
align-items: center;
margin-bottom: 15px;
font-size: 1.2em;
}
.flex-center span {
font-size: 1.8em;
margin-right: 15px;
color: #ffd700;
}
.nav-buttons {
display: flex;
justify-content: space-between;
margin-top: 25px;
}
.nav-buttons button {
background-color: #1e90ff;
color: #fff;
border: none;
padding: 12px 25px;
font-size: 1.1em;
cursor: pointer;
border-radius: 8px;
transition: background-color 0.3s;
}
.nav-buttons button:hover {
background-color: #1c86ee;
}
.intro-text {
font-size: 1.3em;
text-align: center;
margin-bottom: 20px;
color: #ccc;
}
@media (min-width: 768px) {
.grid {
grid-template-columns: 1fr 1fr;
}
.slide img {
height: 300px;
}
.slide h1 {
font-size: 3em;
}
.slide h2 {
font-size: 2em;
}
} |