/* Set black background and white text for all headings */
h1, h2, h3, h4, h5, h6 {
    color: white;
}

/* Set black background and white text for paragraphs */
par {
    color: white;

}


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font: Roboto;
}

.gif-container {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 20px;
    /* box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); */
    border-radius: 8px;
    text-align: center;
}

.construction-gif {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.links {
    margin-top: 20px;
    font: Roboto;
}

.more-gifs {
    display: block;
    color: #007bff;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: bold;
}

.upload-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size:10px;
}

.upload-btn:hover {
    background-color: #0056b3;
}


body, html {
    height: 100%;
    margin: 0;
    font-weight: bold;

}

.video-container {
    position: fixed; /* Use fixed instead of absolute to cover the whole page */
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1; /* Ensure the video is behind other content */
}

.back-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will ensure that the video covers the whole screen */
    
}
.content {
    position: relative;
    z-index: 1; /* This will make sure that the content is displayed above the video */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }