body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
}

.container {
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px #eee;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.roofini {
    color: #046998;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
