@import url(https://fonts.bunny.net/css?family=amita:700);

body {
    background-color: black;
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
}

video {
  -webkit-touch-callout: none; /* Disable long-press context menu on iOS */
  -webkit-user-select: none;
  user-select: none;
}

h1 {
    color: #fefae0;
    font-family: Amita;
    margin: 20px auto;
    width: 450px;
    font-size: 3rem;
    text-align: center;
    border-bottom: 10px double #bc6c25;
}

p {
    color: #fefae0;
    font-family: Amita;
    margin: 10px auto;
    width: 450px;
    font-size: 1.5rem;
    text-align: center;
}

img {
    width: auto;
    max-width: 450px;
    height: 300px;
    margin: 10px;
    border: 10px solid #fefae0;
    transition-duration: 0.5s;
}

img:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

video {
    width: auto;
    max-width: 600px;
    height: 450px;
    margin: 10px;
    border: 10px solid #fefae0;
    transition-duration: 0.5s;
}

iframe {
    border: none;
    margin: 10px;
    border: 10px solid #fefae0;
    transition-duration: 0.5s;
    width: 1000px;
    max-width: 100%;
    height: 500px;
}

iframe:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

video:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

footer {
    background-color: #bc6c25;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    min-width: 100vw;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 20px 20px;
    font-size: 16px;
    background-color: #bc6c25;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition-duration: 0.3s;
}

@media screen and (max-width: 768px) {
    .back-button {
        font-size: 14px;
        top: 10px;
        padding: 10px 15px;
    }

    img {
        height: 200px;
    }

    h1 {
        font-size: 2.5rem;
        top: 40px;
    }
}