html{
    color: #D8D8D8;
    background-color:#111111;
    padding: 0;
    font-family: "Libre Baskerville", serif;
}

.github {
    cursor: pointer;
}

#subscribeForm #consentCheckbox + label {
    font-size: 10px;
    background-color: #B88840;
}

#consentCheckbox {
    font-size: 10px;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
body{
    box-sizing: border-box;
    margin: 0;
    width: 100vw;
    height: 100vh;
    max-height: -webkit-fill-available;
    padding: 16px;
}

.mainContent{
    width: 100%;
    height: 92%;
    display: flex;
    gap: 90px;
}
footer{
    width: 100%;
    height: 8%;
    background-color: transparent;
    display: flex;
    justify-content: left;
    gap: 8px;
    align-items: center;
}
img {
    max-width:100%;
}
.logo{
    height: 40px;
}
.mainContentText{
    flex: 1;
    flex-direction: column;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}
.mainContentImage{
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}
.mainContentTextContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#frontpageTitle {
    text-align: center;
}

#frontImg{
    max-height: 500px;
}
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* make blurred background; */
    backdrop-filter: blur(10px); /* adjust blur as desired */
    overflow: auto;
    z-index: 1;

}
#subscribeForm {
    align-self: center;/* Add the blur effect */
}

.modal-content {
    display: flex;
    align-content: center;
    justify-content: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 40px;
    box-sizing: border-box; /* add this line */
}

.close {
    position: absolute;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    top: 20px;
    right: 20px;
}

label {
    font-weight: bold;
    font-size: 24px;
}

input[type="text"], input[type="email"] {
    width: 100%;
    flex: 1;
    display: flex;
    padding: 12px;
    font-size: 24px;
    border-radius: 4px;
    box-sizing: border-box; /* add this line */
}
input[type="submit"] {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    padding: 10px;
    background-color: #B88840;
    color: #000000;
    font-size: 25px;
    border: none;
    cursor: pointer;
    box-sizing: border-box; /* add this line */
}

input[type="submit"]:hover {
    color: #ffffff;
    transform: scale(1.05); /* This increases the size by 5% when hovered */
}


.close:hover{
    transform: scale(1.05); /* This increases the size by 5% when hovered */
    color: #B88840;
    text-decoration: none;
    cursor: pointer;
}
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Styles for button and input field */
#subscribeButton {
    transition: transform 0.3s ease-in-out;
    width: fit-content;
    font-size: 30px;
    border-radius: 200px;
    padding: 10px 20px;
    align-content: center;
    display: flex;
    justify-content: center;
    background-color: #B88840;
    color: #111111;
    cursor: pointer;
}

#subscribeButton:hover {
    transform: scale(1.05); /* This increases the size by 5% when hovered */
}

#emailInput {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}
/* Add this to your style.css */
#backgroundVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(50%) blur(4px);
}

#mainContent {
    background-color: black;
}

@media only screen and (max-width: 800px) {
    .mainContent {
        flex-direction: column-reverse;
        align-content: center;
    }
    .mainContentImage{
        align-items: center;
    }
    .mainContentText{
        padding-top: 30px;
        justify-content: flex-start;
        align-items: center;
    }
    #backgroundVideo {
        transform: translate(-50%, -50%) rotate(-90deg); /* rotates the video 90 degrees counter clockwise */
    }
}

@media only screen and (max-width: 700px) {
    .mainContent{
        font-size: 0.8em;
    }
}
