46 lines
797 B
CSS
46 lines
797 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
|
|
|
|
body {
|
|
background-color: #F0F0F0;
|
|
font-family: "Open Sans", sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
*::selection {
|
|
background-color: #00BCD4;
|
|
color: white;
|
|
}
|
|
|
|
h1 {
|
|
color: #757575;
|
|
font-size: 3rem;
|
|
margin-top: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.gradient-text {
|
|
background-image: linear-gradient(to right, #4CAF50, #4CAF50 20%, #00BCD4 80%);
|
|
background-clip: text;
|
|
color: transparent;
|
|
}
|
|
|
|
p {
|
|
color: #9E9E9E;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
* {
|
|
opacity: 1;
|
|
transition: opacity 300ms;
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
video {
|
|
width: 355px;
|
|
height: 200px;
|
|
border: 2px solid #212121;
|
|
background-color: black;
|
|
border-radius: 1rem;
|
|
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
|
|
}
|