2024-01-29 22:10:00 +03:00
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-01-29 21:42:38 +03:00
|
|
|
}
|
2024-01-29 22:10:00 +03:00
|
|
|
|
2024-01-29 23:47:50 +03:00
|
|
|
div {
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
background-color: black;
|
|
|
|
color: grey;
|
2024-01-29 22:11:59 +03:00
|
|
|
font-family: sans-serif;
|
2024-01-29 22:10:00 +03:00
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
2024-01-29 23:47:50 +03:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
height: 20%;
|
|
|
|
font-size: xxx-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-wrapper {
|
|
|
|
height: 60%;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-01-29 22:10:00 +03:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-01-29 23:47:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
max-width: 300px;
|
|
|
|
margin: 1%;
|
|
|
|
padding: 1%;
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
|
|
color: black;
|
|
|
|
font-size: large;
|
|
|
|
|
|
|
|
background-color: darkgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
width: 100%;
|
|
|
|
height: 20%;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: flex-end;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyright {
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
padding: 1%;
|
2024-01-29 22:10:00 +03:00
|
|
|
}
|