
/*------------------------------------------------------LOCATIONS----------------------------------------------------------------*/

/*Sets the layout for the webpage*/
.box{
    margin-left: 5%;
    margin-right: 5%;
    position:relative;
    
}


.box h1{
    color: #000000f0;
    font-size: 54px;
    padding-top: 0.1px;
    margin-bottom: 50px;
    text-align: center;
    position:relative;
}

/*Content 2*/

.content1{
    background-color: #1f1f1fd6;
    position: relative;
    margin-bottom: 125px;    
}

.content1 h2{
    margin-left: 25px;
    margin-right: 200px;
    padding-top: 30px;
    font-size: 32px;
    color: white;
    
}

.content1 p{
    margin-left: 30px;
    margin-right: 55px;
    padding-bottom: 20px;
    font-size: 18px;
    color: white;
}

.content1 h3{
    margin-left: 30px;
    margin-right: 25px;
    font-size: 22px;
    color: white;
    padding-bottom: 2px;
    text-decoration: underline;
}

/*Image display content*/
.parentPar{
    position: absolute;
}

.image1{
    position: relative;
    width: 300px;
    height: 300px;
    top: 0px;
    left: 0px;
}

.image2{
    position: relative;
    width: 300px;
    height: 300px;
    top: -300px;
    left: 400px;
}

.image3{
    position: relative;
    width: 300px;
    height: 300px;
    top: -600px;
    left: 800px;
}

.image4{
    position: relative;
    width: 300px;
    height: 300px;
    top: -500px;
    left: 0px;
}

.image5{
    position: relative;
    width: 300px;
    height: 300px;
    top: -800px;
    left: 400px;
}

.image6{
    position: relative;
    width: 300px;
    height: 300px;
    top: -1100px;
    left: 800px;
}

#part1{
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 20px
}


/*Image interaction overlay Section*/

/*Affects of interacting with each image*/
.imageBlurContent{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-family:Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    opacity: 0;
    transition: opacity 0.15s;
    font-size: 12px;
    border-radius: 20px
}

/*sets blur*/
.imageBlurContent--blur{
    backdrop-filter: blur(5px);
}

.imageBlurContent:hover{
    opacity: 1;
    cursor: pointer;
}


/*Formats text content*/
.imageTitle{
    font-size: 36px;
    font-weight: bold;

}
.ImageContent{
    margin-top: 0.5px;
    margin-left: 20px;

}

/*Positions footer*/
.footerPosition{
    margin-top: 600px;
    
}

