body {
    background-color: rgb(0, 0, 0);
    font-family: "montserrat", sans-serif;
    color: white;
}

h2 {
    font-size: 80px;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
   
}

p {
    font-size: 24px;
    text-align: center;
}


#film-poster {
    width: 80%;
    border-radius: 20px;
    border-style: solid;
    border-color: white;
    margin-top: auto; 
    transition: transform 0.3s ease-in-out;   
}

#film-poster:hover {
    transform: scale(1.1); 
    cursor: pointer; 
}



#hero-section {
    margin-left: auto;
    margin-right: auto; 
}

#hero-image {
    width: 100%;
  
}

#my-face {
    width: 75%;
    border-radius: 20px;
    border-style: solid;
    border-color: white;
    margin-top: auto;
    transition: transform 0.3s ease-in-out;

}
#my-face:hover {
    transform: scale(1.1); 
    cursor: pointer; 
}

.flex-box {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 5%;
}

.flex-item {
    width: 45%;
}

.research-graphic {
    width: 100%;
    border-radius: 20px;
    border-style: solid;
    border-color: white;
    transition: transform 0.3s ease-in-out; 
}

.research-graphic:hover {
    transform: scale(1.1); 
    cursor: pointer; 
}


.img-link{
    width: 50%;
     transition: transform 0.3s ease-in-out; }

.img-link:hover {
    transform: scale(1.5); 
    cursor: pointer; 
}

.img-shout{
    width: 20%;
    border-radius: 20px;
    border-style: solid;
    border-color: white;
     transition: transform 0.3s ease-in-out; 
    
    }

.img-shout:hover {
    transform: scale(1.5); 
    cursor: pointer; 
}

.shout {   
    font-size: 80px;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-left: 20%;
    margin-right: 20%;
    color: white; 
    transition: transform 0.3s ease-in-out; 
}

.shout:hover {
    transform: scale(1.1); 
    cursor: pointer; 
}



  
.support-paragraph {
    font-size: 24px;
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    margin-left: 20%;
    margin-right: 20%;
}

@media screen and (max-width: 768px) {
    .flex-box {
        flex-direction: column;
    }

    .flex-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-label {
        font-size: 1rem;
        padding: 6px 0;
    }
}

.back-to-top {
    margin-top: 10%px;
    background-color: white;
    color: black;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
    border: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    padding: 50px 250px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: black;
    color: white;
    transition: background-color 0.3s ease;
}

.footer-content{
    background-color: white;
    color: black;
    padding: 20px;
    font-family: "montserrat", sans-serif; 
    font-weight: 900;
    text-align: center;
}

