@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');


a:link {
    text-decoration: none;
    cursor: pointer;
}


.section:last-of-type {
    padding-bottom: 4rem;
}

.bgimage {
    height: 100vh;
    background: url(images/ish2.JPG);
    background-size: cover;
    position: relative;
}

.blogimage {
    height: 100vh;
    background-size: cover;
    position: relative;
}

.about_text,
.project_text,
.contact_text {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
}


.hero_title,
.blog_title {
    padding-top: 4.5rem;
    font-size: 6rem;
    color: black;
    font-family: 'Dancing Script', cursive;
}

.hero_details {
    font-size: 5rem;
    color: black;
}

.hero_text,
.blog_text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-weight: bold;
    font-size: 1.5rem;
}

.ish {
    width: 100%;
}

.card-text {
    height: 180px;
    cursor: pointer;

}

.card-img-top{
    width: 30vw;
    height: 30vh;
}

.desc,
.img_text,
.heading_text,
.card {
    font-family: 'Lora', serif;
}

.img_text {
    size: 15px;
}

.desc,
.card_text {
    font-size: large;
}

#footer {
    background-color: black;
    text-align: center;
    height: 5vh;
}


#about_me,
#projects,
#contact_me {
    margin-top: 4rem;
    padding-top: 4rem;
}

.form {
    align-content: center;
}

.text-box {
    width: 50vw;
}

.fa-linkedin,
.fa-square-github {
    font-size: 5vh;
    cursor: pointer;
}

.fa-linkedin:hover,
.fa-square-github:hover {
    color: #008000;
}

.linkedin,
.github {
    color: white;
}

.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    transition: opacity 0.75s, visibility 0.75s;

}
.loader-hidden{
    opacity: 0;
    visibility: hidden;

}
.loader::after{
    content: " ";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: Black ;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}
/* .dark-mode {
    --clr-background: black;
    --title-text-color: white;
    
} */
@keyframes loading {
    from{
        transform: rotate(0turn);
    }
    to{
        transform: rotate(1turn);
    }
}





@media screen and (min-width:1200px) {
    .hero_text {
        text-align: left;
        color: white;
        font-size: 25px;
    }

    .hero_title {
        padding-top: 4.5rem;
        font-size: 10rem;
        color: white;
        font-family: 'Dancing Script', cursive;
    }




}