html {
    margin: 0;
}

*{
font-family: "Radio Canada Big", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex; 
    height: 100vh; 
}

h1 {
    font-size: 4rem;
    text-transform: lowercase;
    margin: 0;
    line-height: 4rem;
    font-weight: 700;
}

p{
    font-size: 1rem;
    margin: 0;
}

.container{
    width: 1300px;
    height: fit-content;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

header {
    display: flex;
    flex-direction: column;
    height: fit-content;
    border: 1px solid black;
    padding: 20px;
    box-sizing: border-box;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px; 
}

video{
    width: 100%;
}

.video-title {
    font-size: 0.9em;
    font-style: italic;
}

.video-duration {
    font-size: 0.8em;
    margin-top: 5px; 
    color: #333;
}

#button-a {
    display: inline-block;
    width: fit-content;
    padding: 8px 10px;
    font-size: 1em;
    color: black;
    border: 1px solid black;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}
#button-a:hover {
    background-color: black;
    color: white;
}


/* 
@media (max-width: 768px) {
    main {
        flex-direction: column; 
        padding: 50px 20px; /
    }

    .content {
        flex-direction: column; 
        gap: 20px; 
        align-items: center; 
    }

    .video-section {
        max-width: 100%; 
        width: 100%; 
    }

    .text-section {
        max-width: 100%; 
        font-size: 1em;
        margin-bottom: 0; 
    }
} */
