mirror of https://github.com/mitchell/mjfs.us.git
24 lines
362 B
CSS
24 lines
362 B
CSS
.website {
|
|
color: white;
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.main-container {
|
|
margin: auto;
|
|
margin-top: 55px;
|
|
min-width: 800px;
|
|
text-align: center;
|
|
width: 40%;
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
.main-container {
|
|
margin-bottom: 50px;
|
|
margin-top: auto;
|
|
min-width: 0;
|
|
width: 100%;
|
|
}
|
|
}
|