mjfs.us/src/Website.css

23 lines
350 B
CSS
Raw Normal View History

.website {
color: white;
display: flex;
flex-flow: column nowrap;
justify-content: center;
}
.main-container {
margin: auto;
margin-top: 50px;
max-width: 500px;
min-width: 60%;
text-align: center;
}
@media screen and ( max-width: 500px ) {
.main-container {
margin-bottom: 50px;
margin-top: auto;
width: 100%;
}
}