41 lines
650 B
CSS
41 lines
650 B
CSS
body{
|
|
font-family: Arial, sans-serif;
|
|
font-size: 15px;
|
|
margin: 0;
|
|
padding: 0;
|
|
background:#d4e5d8;
|
|
}
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #CCC #FFF
|
|
}
|
|
*::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
*::-webkit-scrollbar-track {
|
|
background: #FFF;
|
|
}
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: #AAA;
|
|
border-radius: 20px;
|
|
border: 3px solid #FFF;
|
|
}
|
|
|
|
h1{padding: 0 30px}
|
|
|
|
.main-block{
|
|
display: flex;
|
|
align-items: center;
|
|
height: 50vh;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
color:#888;
|
|
}
|
|
.main-block__header{
|
|
font-size: 70px;
|
|
}
|
|
.main-block__text{
|
|
font-size: 30px;
|
|
}
|
|
|