24 lines
454 B
CSS
24 lines
454 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro');
|
|
|
|
body {
|
|
font-family: 'Anonymous Pro', monospace;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
margin: 80px 10px;
|
|
background-color: #666666;
|
|
}
|
|
|
|
video {
|
|
width: 40vw;
|
|
height: 30vw;
|
|
margin: 2rem;
|
|
background: #2c3e50;
|
|
}
|
|
|
|
.videos {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |