17 lines
260 B
CSS
17 lines
260 B
CSS
|
header {
|
||
|
height: 100vh;
|
||
|
display: grid;
|
||
|
place-content: center;
|
||
|
}
|
||
|
|
||
|
header > div {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center; /* Vertical center of image & text */
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
width: 50%;
|
||
|
}
|