brainrotscript
Version:
🧠A brainrot programming language that compiles to JavaScript - because why write normal code when you can write code that's absolutely sending you? 💀
35 lines (31 loc) • 735 B
CSS
/* Main App Styles */
.app {
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
/* Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
p {
text-align: center;
margin-bottom: 15px;
}