:root {
    --app-height: 100%;
 }

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box 
}

@keyframes onLoad {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    50% {
        opacity: 1;
        transform: scale(1);
        transform: translateY(0px);
    }
    70% {
        transform: translateY(0px);
    }
    80% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0px);
    }

}

/* ANIMATION */
.zFxOff {
    opacity: 0;
    transition: all 500ms;
}
.zFxOn {
    opacity: 1;
}
.color1 {
    transition-delay: 0ms;
}
.color2 {
    transition-delay: 100ms;
}
.color3 {
    transition-delay: 200ms;
}
.color4 {
    transition-delay: 300ms;
}
.color5 {
    transition-delay: 400ms;
}
.color6 {
    transition-delay: 500ms;
}
/* END ANIMATION */

.mainDiv {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
}

.mainBody {
    display: flex; 
    flex-direction: column; 
    width: 400px;
    height: 88vh;
    max-height: 801.3px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 2;
    background-color: white;
    margin: auto;
    border-radius: 30px;
    border: #d9d9d9 1px solid;
}

.mainFrame {
    padding: 50px 50px 0px;
    animation-duration: 2.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-name: onLoad;
}

.profileImgDiv {
    display: flex;
}

.profileImgDiv a {
    margin: 0 auto;
}

.profileImgDiv img {
    width: 100px;
}

.textDescription h1{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    text-align: center;
}

.textDescription p{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

.btnContainer {
    padding: 30px 0px;
}

.btnContainer a{
    text-decoration: none;
}

.buttonDiv {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    text-align: center;
    background-color: black;
    border-radius: 14px;
    padding: 15px 15px;
    margin-bottom:15px;
}

.buttonDiv:hover {
    background-color: #282828;
}

.faIcon {
    margin-right:7px;
}

.socialContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 90%;
    margin: 0px 5%;
}

.socialContainer a {
    color: black;
}

.socialContainer a:hover {
    color: #282828;
}

.footer {
    margin-top: 30px;
    padding: 10px 0;
    z-index: 1;
}

.footer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    line-height: 2em;
}

.lgbtqflag {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
    
.color1 { grid-area: 1 / 1 / 2 / 2; background-color: #ff585d;}
.color2 { grid-area: 1 / 2 / 2 / 3; background-color: #ff993a;}
.color3 { grid-area: 1 / 3 / 2 / 4; background-color: #ffc938;}
.color4 { grid-area: 1 / 4 / 2 / 5; background-color: #89c825;}
.color5 { grid-area: 1 / 5 / 2 / 6; background-color: #1a82c4;}
.color6 { grid-area: 1 / 6 / 2 / 7; background-color: #6a4c92;}

.color1, .color2, .color3, .color4, .color5, .color6 {
    height: 10px;
}

@media only screen and (max-width: 450px) {
    .mainDiv {
        height: var(--app-height);
    }

    .mainBody{
        width: 100%;
        height: 100%;
        overflow-y: auto;
        border-radius: 0;
        margin: 0;
        border: white 0px solid;
    }

    .profileImgDiv img {
        width: 125px;
    }

    .textDescription h1{
        font-size: 18px;
    }
    
    .textDescription p{
        font-size: 16px;
    }
    .footer p {
        font-size: 16px;
    }
  }
    