RecToon/
├── index.html
├── about.html
├── creators.html
├── news.html
├── rooms.html
├── videos.html
├── faq.html
├── contact.html
├── style.css
└── script.js
RecToon | Home
Welcome to RecToon!
A community built for creators, gamers and everyone who loves
creating amazing experiences.
🎮 Games
Discover fun games and experiences from the RecToon community.
🎨 Creators
Meet creators and discover their latest projects.
📰 News
Stay updated with the latest RecToon announcements.
💬 Community
Join the community and connect with other members.
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: #10131a;
color: white;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 7%;
background: #181c25;
}
.logo {
font-size: 28px;
font-weight: bold;
}
nav a {
color: white;
text-decoration: none;
margin-left: 20px;
}
nav a:hover {
opacity: 0.7;
}
.hero {
text-align: center;
padding: 120px 20px;
}
.hero h1 {
font-size: 55px;
margin-bottom: 20px;
}
.hero p {
max-width: 650px;
margin: auto;
font-size: 18px;
line-height: 1.6;
}
button {
margin-top: 30px;
padding: 15px 30px;
border: none;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
padding: 40px 7%;
}
.card {
background: #1c212c;
padding: 30px;
border-radius: 15px;
}
.card h2 {
margin-bottom: 10px;
}
.card p {
color: #c8cbd1;
line-height: 1.5;
}
footer {
text-align: center;
padding: 30px;
background: #181c25;
margin-top: 50px;
}