/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    background-color: #121212;
    color: #E18B35;
}

.title {
    font-size: 35px;
    text-align: center;
    margin-top: 20px;
}

/* FPV Description Container */
.fpv-description {
	font-size: 20px;
    background-color: #1f2329;
    color: #E18B35;
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

/* FPV Controller Container */
.fpv-controller {
	font-size: 20px;
    background-color: #2b3138;
    color: #E18B35;
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

/* FPV Video Container */
.fpv-video {
	font-size: 20px;
    background-color: #343a40;
    color: #E18B35;
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

/* Images and Videos */
.fpv-image, .fpv-image2 {
	font-size: 20px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin: 15px auto;
    display: block;
}

.fpv-iframe {
    border-radius: 10px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Home Button */
.home-button {
	font-size: 20px;
    text-align: center;
    margin: 20px;
}

.home-button a {
    font-size: 20px;
    text-decoration: none;
    color: #E18B35;
    background-color: #1f2329;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.home-button a:hover {
    transform: scale(1.1);
}

/* Responsive Layout for Mobile */
@media screen and (max-width: 600px) {
    .fpv-description, .fpv-controller, .fpv-video {
        font-size: 16px;
        padding: 10px;
        max-width: 95%;
    }

    .fpv-image, .fpv-image2 {
        width: 100%;
        height: auto;
    }

    .home-button a {
        font-size: 14px;
        padding: 8px 15px;
    }
}
