23 lines
422 B
CSS
23 lines
422 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Jersey+15&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
|
|
*{
|
|
font-family: "Jersey 15", sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
background-color: black;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
height: 100dvh;
|
|
}
|
|
|
|
.col {
|
|
flex: 1;
|
|
width: 50%;
|
|
padding: 30px;
|
|
box-sizing: border-box;
|
|
} |