@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Lexend:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend', sans-serif;
}

html, body {
    background-color: black;
    height: 100%;
}

header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    height: 70px;
}

#video {
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    width: 100%;
    margin-top: 5%;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#video select {
    width: 33%;
}

aside {
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    width: 40%;
    border-radius: 5px;
    margin-top: 3%;
}

aside div {
    display: flex;
    gap: 20px;
}

aside div .text {
    width: 100%;
}

#transcript {
    width: 50%;
    gap: 6px;
    display: flex;
    flex-direction: column;
    max-width: 450px;
    max-height: 500px;
    overflow-y: auto;
}

#transcript div {
    width: 100%;
}