/* Body structure */

.bigContainer{
    width: 100%;
    height: 100%;
    background-image: url(4.jpg);
}

.blurNavigation{
    background-image: url(4.jpg);
}

.bigContainer div{
    margin-left: 0px;
}

/* Navigation */

#links li:nth-of-type(4) a{
    text-decoration: underline;
}

#linksMobile li:nth-of-type(4) a{
    text-decoration: underline;
}

/* Body content */
#bodyContent{
    height: 80%;
}

#contactContainer{
    height: 100%;
    width: 90%;
    overflow: hidden;
    background-color: white;
    z-index: 1;
}

.contactContent{
    height: 20%;
    background-color: rgb(165,95,193);
    border-bottom: 1.5px solid rgb(165,95,193);
    position: relative;
    z-index: 2;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.title{
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.5s ease-in-out 0.5s;
    -webkit-transition: 0.5s ease-in-out 0.5s;
    padding-left: 0px;
}

.title p {
    color: rgb(165,95,193);
    font-size: 2.4vw;
    font-weight: bold;
    transition: 0.5s ease-in-out 0.5s;
    -webkit-transition: 0.5s ease-in-out 0.5s;
}

.title p i{
    color: rgb(165,95,193);
    transition: 0.5s ease-in-out 0.5s;
    -webkit-transition: 0.5s ease-in-out 0.5s;
}

.seperator{
    border: 1.5px solid white;
    width: 0%;
    border-radius: 5px;
    transition: 1s ease-in-out 0.5s;
    -webkit-transition: 1s ease-in-out 0.5s;
}

.contentContainer{
    height: 80%;
    display: flex;
    align-items: center;
    overflow-y: scroll;
    display: none;
}

.contentContainer::-webkit-scrollbar{
    display: none;
}


.contentContainer p{
    color: white;
    font-size: 1.4vw;
}

.backgroundRunning{
    position: absolute;
    top: 0px;
    height: 100%;
    width: 0%;
    background-color: rgb(165,95,193);
    transition: 1s ease-in-out 0.5s;
    -webkit-transition: 1s ease-in-out 0.5s;
    z-index: -1;
}

@media screen and (max-width: 1024px){
    .title p {
        font-size: 3vh;
    }

    .contentContainer p {
        font-size: 2vh;
    }
}



