@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@700&display=swap');

: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);
    }

}
body {
    background-color: #F7F7F7;
}

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

.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: 15px;
    border: #d9d9d9 1px solid;
}

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

.profileImgDiv {
    display: flex;
    margin-bottom: 7px;
}

.profileImgDiv a {
    margin: 0 auto;
}

.profileImgDiv img {
    width: 100px;
    height: auto;
    border-radius: 100px;
}

.textDescription h1{
    font-family: 'Playfair Display', serif;
    font-weight:700;
    font-size: clamp(1.75rem, 1.875rem, 2.375rem);
    color:#192A51;
    letter-spacing:-0.01em;
    line-height: 130%;
    text-align: center;
    margin-bottom: 5px;
}

.textDescription p{
    font-family: 'Montserrat', sans-serif;
    font-size:clamp(1rem, 1rem, 1.125rem);
    line-height:150%;
    text-align: center;
}

.btnContainer {
    padding: 30px 0px 20px;
}

.btnContainer a{
    text-decoration: none;
}

.buttonDiv {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1rem, 1.563rem);
    font-weight: 300;
    color: white;
    text-align: center;
    background-color: #4169E1;
    border-radius: 0;
    padding: 15px 15px;
    margin-bottom:15px;
    transition: 200ms ease-in-out;
    border-radius: 4px;
}

.buttonDiv:hover {
    background-color: #2148BF;
}

.buttonDiv2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1rem, 1.563rem);
    font-weight: 300;
    color: #4169E1;
    text-align: center;
    background-color: white;
    border-radius: 0;
    padding: 15px 15px;
    margin-bottom:15px;
    border: 1px solid #4169E1;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 200ms ease-in-out;
    border-radius: 4px;
}

.buttonDiv2:hover {
    border: 1px solid #2148BF;
    color: #2148BF;
}

.faIcon {
    margin-right:12px;
    font-size: clamp(1rem, 1rem, 1.563rem);
}

.footer {
    z-index: 1;
}

.footer p {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.8rem, 0.875rem, 1.12rem);
    font-weight: 300;
    text-align: center;
    line-height: 2em;
}

@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: #F7F7F7 0px solid;
        background-color: #F7F7F7;;
    }

    .profileImgDiv img {
        width: 125px;
    }

    .textDescription h1{
        font-size: 30px;
    }

    .buttonDiv2 {
        background-color: #F7F7F7;
    }
    .footer p {
        font-size: clamp(0.8rem, 0.875rem, 1.12rem);
    }
  }
    