a {
    text-decoration: none;
}

.welcome {
    margin-top: 20px;
    margin-left: 28px;
    font-size: 70px;
    font-weight: bold;
}

.tagline {
    margin-top: 10px;
    margin-left: 32px;
    font-size: 40px;
}

.content {
    margin-top: 10px;
    margin-left: 35px;
    margin-right: 25px;
    margin-bottom: 30px;
    font-size: 20px;
    text-align: justify;


    font-weight: normal!important;

}

.card {
    margin-top: 50px;
    width: 250px;
    border: solid;
    color: black;
    background-color: var(--white);
    padding: 20px;
    margin: 5px;
}

.capsule_caption {
    margin-left: 10px;
    font-weight: bold;
}

.capsule {
    border-radius: 10%/50%;
    width: 100px;
    background-color: var(--pastel-orange);
    margin-left: -5px;
    margin-bottom: 3vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mid_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-self: center;
    width: 96%;
}

.head {
    width: 100%;
    margin-bottom: 10px;
}

.read_more {
    width: 100%;
    margin-bottom: 60px;
}

.login {
    margin-right: 10px;
}
.mid_position_buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;


    width: 400px;
    background: var(--black);
    color: var(--white);
    height: 40px;
    margin-top: 30px;
    border: none;
    border-radius: 0 !important;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background: var(--orange);
    color: var(--black);
}

.homeimg {
    width: 100%;
    height: auto;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
    .welcome {
    
        font-size: 50px;
    
    }
    
    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mid_container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90%;
    }

    .card {
        width: 90%;
        border: solid;
        color: black;
        background-color: var(--white);
        padding: 20px;
        margin-left: 15px;

    }

    .homeimg {
        width: 100%;
        height: auto;
    }
    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width:250px;
        background: var(--black);
        color: var(--white);
        height: 40px;

        margin-top: 30px;
        margin-left: 15px;
    }
.mid_position_buttons
{ 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}
.tagline {
    margin-top: 10px;
    margin-left: 32px;
    font-size: 16px;
}
.content {
    font-size: 16px;
    font-weight: normal;
}

/* Media Query for Mobile Devices */
@media (max-width: 375px) {
    .button {
        font-size: 10px;
        width: 200px;
        margin-left: 10px;  
    }
        .mid_position_buttons
        { 
            display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
        
        }
    .homeimg {
        width: 100%;
        height: auto;
    }

    .welcome {
    
        font-size: 30px;
    
    }
    
}

/* Media Query for low resolution  Tablets, Ipads */
/* @media (min-width: 481px) and (max-width: 767px) {
 
} */

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
    .button {
        font-size: 10px;
        width: 200px;
    }
    .tagline {
        margin-top: 10px;
        margin-left: 32px;
        font-size: 20px;
    }
    .content {
        font-size: 16px;
        font-weight: normal!important;
    }
}


/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {}
}
/* Media Query for Large screens */
/* @media (min-width: 1281px) {} */