* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}

body {


    background-image: url("./images/backgroundVertical.jpg");
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}
video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

h2{
    font-family: "Red Rose", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 35px;
    color: white;
}
h3{
    font-family: "Red Rose", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 30px;
    color: white;
}
p, li{
    font-family: "Epilogue", sans-serif;
    font-weight: light;
    font-size: 14px;
    line-height: 150%;
    padding: 10px;
    text-align: justify;
    color: white;

}

.container {
    max-width: 900px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    color: white;
    padding: 60px;
    margin: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h2 {
    font-size: 2em;
    color: #ffffff;
}

section {
    margin-bottom: 20px;
}

section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
}

section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

ul {
    list-style: disc inside;
    margin-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

strong {
    color: #7a8c6a;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header h2 {
        font-size: 1.5em;
    }

    section h3 {
        font-size: 1.25em;
    }
}
