body {
    background-color: rgb(15, 15, 15);
}

.front_text {
    text-align: center;
    font-weight: 300;
}

h1, h2, p {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

#buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
}

button {
    width: fit-content;
    padding: 10px 20px 10px 20px;
    border-radius: 20px;
    border: none;
}

button:nth-child(1) {
    background-color: rgb(145, 165, 235);
    color: rgb(38, 55, 116);
}
button:nth-child(2) {
    background-color: rgb(203, 47, 47);
    color: rgb(255, 182, 182);
}

#video_playback {
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    width: 75%;
    opacity: 1;
}

