/* General body styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url('../images/Activity Design _Desktop-02.jpg'); /* Default background image for desktop */
  }
  
  /* Different backgrounds for desktop and mobile */
  @media (min-width: 769px) {
    body {
        background-image: url('../images/Activity Design _Desktop-02.jpg'); /* Path to your desktop background image */
    }
  }
  
  @media (max-width: 768px) {
    body {
        background-image: url('../images/Activity Design_Mobile 2-03.jpg'); /* Path to your mobile background image */
    }
  }
 
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.instruction {
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin: 20px 0;
}

.submit-btn {
    align-self: flex-end;
    margin-right: 20%;
    /* float: right; */
    background-color: #ffd000;
    color: #000;
    border: none;
    /* padding: 0px 20px; */
    font-size: 28px;
    cursor: pointer;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Mobile styles */
@media (max-width: 768px) {
    .instruction {
        font-size: 24px;
        background-color: #fff;
    }

    .submit-btn {
        /* width: 50%; */
        font-size: 26px;
        float: right;
        padding: 10px 20px;
    }
    .video-container iframe {
        position: absolute;
        height: 75%;
        padding-top: 35%;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .instruction {
        font-size: 24px;
        background-color: #fff;
    }

    .submit-btn {
        width: auto;
        padding: 10px 20px;
    }
}