@import url('fonts.css');

body{
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.page {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.header_indent {
    position: sticky;
    top: 0;
    padding: 20px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1 1 auto; 
}

h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}

.header__img{
    display: block;
    width: 38px;
    height: 38px;
}

.video-wrapper {
    position: relative;
}

.video-wrapper > video {
    width: 100%;
    max-width: 720px;
    max-height: 500px;
    border-radius: 10px;
}

.video-wrapper > canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

input::placeholder {
    color: #aaa;
}