Files
youhavetrouble.github.io/reset.css
T
2023-11-08 19:36:52 +01:00

49 lines
593 B
CSS

* {
box-sizing: border-box;
}
:root {
margin: 0;
padding: 0;
}
::-moz-selection {
background: rgba(255,255,255, 0.2);
}
::selection {
background: rgba(255,255,255, 0.2);
}
html {
background-size: cover;
font-size: 1.2em;
}
body {
margin: 0;
background-color: rgba(16, 16, 16, 0.7);
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
width: 100%;
min-height: 100vh;
padding: 0;
}
small {
font-size: 0.6rem;
}
p, h1, h2, h3, h4, h5, h6 {
text-align: center;
margin: 0;
}
a {
text-decoration: none;
}
h2 {
font-size: 1.1rem;
}