body {
    font-family: Arial, Helvetica, sans-serif;
}

#container {
    width: 80%;
    margin: auto;
}

header {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

#flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

main {
    flex: 3;
    line-height: 1.2;
}

aside {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

aside img {
    width: 75%;
    height: auto;
    transform: rotate(20deg);
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
    font-size: .75rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.cta {
    padding: 0.5rem 1rem;
    background-color: #e18330;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.cta:hover {
    text-decoration: underline;
}

@media screen and (max-width: 600px) {
    #flex {
        flex-direction: column;
        align-items: center;
    }

    aside {
        width: 100%;
        flex-direction: column;
        justify-content: space-around;
    }

    aside img {
        width: 50%;
    }
}