html, body {
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.bg-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-image-container img {
    /* width: 100%;
    height: auto; */
    /* new */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* end new */
    filter: blur(25px);
    -webkit-filter: blur(25px);
}

.content-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20%;
    color: #ffffff;
}

.primary-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
}

@media (max-width: 1000px) {
    .primary-title {
        font-size: 24px;
    }
}

.sub-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 28px;
}

@media (max-width: 1000px) {
    .sub-title {
        font-size: 18px;
    }
}

.sub-title-date {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 32px;
}

logo {
    width: 20px;
    height: 72px;
    padding: 10px;
    border: 5px solid #ffffff;
    border-radius: 24px;
    margin: 0;
    margin-left: 10px;
}

footerlogo {
    width: 20px;
    height: 72px;
    padding: 5px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 0;
    margin-left: 10px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: center;
    color: white;
}

.footer-content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px;
}

@media (max-width: 1000px) {
    .footer-content-container {
        flex-direction: column;
    }
}

.footer p {
    font-size: 11px;
}

@media (min-width: 1000px) {
    .copyright p {
        margin-top: 10%;
    }
}

@media (max-width: 1000px) {
    .copyright p {
        font-size: 11px;
    }
}




