29 lines
360 B
CSS
29 lines
360 B
CSS
|
*, *::before, *::after {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
|
||
|
body {
|
||
|
height: 100vh;
|
||
|
width: auto;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
height: 75vh;
|
||
|
width: auto;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-height: 100%;
|
||
|
width: auto;
|
||
|
object-fit: contain;
|
||
|
}
|