368d6fafea
Code backup
33 lines
533 B
CSS
33 lines
533 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background: linear-gradient(315deg, #d12b2b, #5684b4);
|
|
background-attachment: fixed;
|
|
font-family: "Poppins", sans-serif;
|
|
height: 100%;
|
|
display: grid;
|
|
padding: 25px;
|
|
}
|
|
|
|
div#container {
|
|
margin: auto;
|
|
}
|
|
|
|
.title {
|
|
color: #fff;
|
|
font-size: 56px;
|
|
text-align: center;
|
|
}
|
|
|
|
.corpe {
|
|
color: #fff;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
} |