/*ABOUT HER PAGE CSS*/

.enchantee {
    flex:1;
    margin-right:0;
    padding: 10px;
    border:none;
    padding-bottom: 50px;
    text-align: center;
    justify-content: center;
    line-height:35px;
    font-weight: 600;
    color:#ce517c;
}

.enchantee h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
}
.resume {
    flex:1;
    padding-top:30px;
    padding-right: 50px;
}

.resume h1 {
    font-size: 3rem;
    padding:20px 0 0 15px;
}
.float-img-left {
    float:left;
    margin-top:20px;
    margin-right:20px;
    margin-bottom: 20px;
    padding:10px 10px 0 10px;
    animation: myAnim 2s ease 0s 1 normal forwards;
}

/*ANIMATION*/
@keyframes myAnim {
        0% {
            transform: scale3d(1, 1, 1);
        }
    
        30% {
            transform: scale3d(1.25, 0.75, 1);
        }
    
        40% {
            transform: scale3d(0.75, 1.25, 1);
        }
    
        50% {
            transform: scale3d(1.15, 0.85, 1);
        }
    
        65% {
            transform: scale3d(0.95, 1.05, 1);
        }
    
        75% {
            transform: scale3d(1.05, 0.95, 1);
        }
    
        100% {
            transform: scale3d(1, 1, 1);
        }
}

.resume ul dl {
    flex:1;
    padding-right: 50px;
    padding-bottom: 10px;
}

#resumelist1 {
    list-style-type: none;
    padding:0;
    margin:10px;
}

#resumelist1 li {
    font-weight: 700;
    font-size: 1.5rem;
}

#resumelist2 dt, #resumelist3 dt {
    font-weight:bold;
    font-size: 2rem;
    padding: 15px 0 0 15px;
    color:indianred;
}

#resumelist2 dd, #resumelist3 dd {
    line-height: 25px;
    font-weight: 800;
    color:indianred;
    margin-left: 15px;
}

#contact {
    line-height: 35px;
    padding-top: 25px;
    padding-bottom:50px;
    padding-left: 10px;
    list-style-type: none;
    color:indianred;
    font-size: 1.5rem;
}

#contact a {
    color:rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 700;
}

#bookinfo {
    margin-top:50px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
}

#bookinfo p {
    font-size: 20px;
    margin-bottom:20px;
}

#bookinfo ol {
    font-size: 18px;
    margin-bottom:20px;
    list-style-type: georgian;
}
#bookinfo h2 {
    font-size: 45px;
    margin-bottom:20px;
}
#bookinfo h3 {
    font-size: 22px;
    margin-bottom:20px;
}

#book-links a {
    font-size: 20px;
    margin-bottom:20px;
    text-decoration: none;
    background: linear-gradient(45deg, #9699f7, #f5266e);
    color: #fff1f6;
    padding:20px;
    border-radius: 5%;
    line-height: 85px;
}

#book-links li {
    list-style-type: none;
    font-weight: 700;
}
/*ABOUT HER PAGE CSS ENDS*/

/*MEDIA QUERY FOR iPHONE X BEGINS*/
@media only screen and (max-width:400px) {
    
#libraryh1 h1, .enchantee h1 {
        font-size: 20px;
        line-height: 1.5em;
        text-align: center;
        padding-top: 15px;
}

.enchantee {
        flex:1;
        margin-right:0;
        padding: 10px;
        border:none;
        padding-bottom: 50px;
        text-align: center;
        justify-content: center;
        line-height:15px;
        font-weight: 400;
        font-size: 14px;
        color:#ce517c;
}
}