30 lines
No EOL
452 B
CSS
30 lines
No EOL
452 B
CSS
.home {
|
|
height:50vw;
|
|
background-color:black;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
height:40vw;
|
|
}
|
|
|
|
.contentTxt {
|
|
display: flex;
|
|
flex:2;
|
|
align-items: center;
|
|
font-family: 'Wellfleet', cursive;
|
|
font-size:4vw;
|
|
color:white;
|
|
text-align: center;
|
|
width:40%;
|
|
}
|
|
|
|
.buttonBlock {
|
|
display: flex;
|
|
flex:1;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |