41 lines
773 B
CSS
41 lines
773 B
CSS
.video-container {
|
|
margin: clamp(20px, 5vh, 50px) 0;
|
|
width: min(70vh, 100%);
|
|
max-width: 600px;
|
|
aspect-ratio: 1 / 1;
|
|
background-color: black;
|
|
border-radius: var(--radius);
|
|
overflow: hidden;
|
|
align-self: center;
|
|
position: relative;
|
|
border: 1px solid var(--surface-line);
|
|
}
|
|
|
|
.button-div {
|
|
width: fit-content;
|
|
align-self: center;
|
|
margin: clamp(24px, 6vw, 50px) 0;
|
|
}
|
|
|
|
.text-container-explanation {
|
|
margin: clamp(30px, 6vw, 70px) 0 0 0;
|
|
width: 100%;
|
|
max-width: 800px;
|
|
align-self: center;
|
|
position: relative;
|
|
}
|
|
|
|
.text-container-introduction {
|
|
margin: clamp(20px, 5vw, 50px) 0 0 0;
|
|
width: 100%;
|
|
max-width: 800px;
|
|
align-self: center;
|
|
position: relative;
|
|
}
|
|
|
|
.text-container-introduction p,
|
|
.text-container-explanation p {
|
|
margin: 20px 0;
|
|
font-size: 1.1rem;
|
|
}
|