2024-03-28 20:22:10 +00:00

41 lines
540 B
CSS

* {
margin: 0;
box-sizing: border-box;
font-family: monospace;
}
html {
scroll-behavior: smooth;
}
body {
width: 100%;
height: 100vh;
max-width: 100vw;
font-family: monospace;
overflow-y: hidden;
}
a {
font-family: monospace;
}
a:-webkit-any-link {
color: white;
}
#root {
height: 100%;
width: 100%;
}
.contentContainer {
display: flex;
flex-direction: column;
background: linear-gradient(109.6deg, rgb(10, 20, 20) 11.2%, rgb(11, 132, 145) 91.1%);
width: 100%;
height: 100%;
min-height: 100%;
}