Files
100DaysOfCode/day16/src/style.css
2022-10-09 01:12:08 -05:00

21 lines
346 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
background-color: #101010;
color: #FEFEFE;
font-family: Helvetica, Arial, Sans-Serif;
padding: 0;
margin: 0;
min-height: 100vh;
}
a:hover {
text-decoration: underline;
}
.container__content {
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}