*{
    margin: 0px;
    padding: 0px;
}
header
{
    background-color:#251B37;
    height: 60px;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: center;
    position: sticky;
    top: 0px;
    z-index: 10;
    background-size:contain;
    color: #FFCACA;
}
.title
{
    font-size: 32px;
    text-decoration: underline;
    position: relative;
    top: 9px;
    left:-15px;
    font-family: 'Raleway', sans-serif;
}
.tajlogo
{
    position: relative;
    right: 10px;
    left: -35px;
    height: 43px;
    width: 55px;
    top: 7px;
    border-radius: 4px;
}
.about
{
    font-family: 'Raleway', sans-serif;
    position: absolute;
    right: 49px;
    top: 20px;
    font-size: 21px;
}
body
{
    background-color: #FFECEF;
    overflow-x: hidden;
}
main
{
    background-color:#FFECEF;
    background-size: contain;
}
.name
{
    font-size: 25px;
    position: relative;
    font-family:'Rubik', sans-serif;
    display:inline;
    margin: auto;
}
.container
{
    font-family:'Rubik', sans-serif;
    text-align: center;
    padding: 32px;
    padding-bottom: 0px;
}
.card
{
    background-color: #372948;
    border-radius: 25px;
    padding:25px;
    margin-bottom: 33px;
    color: #FFCACA;
    background-size: contain;
}
.slideshow-container
{
    position: relative;
    margin: auto;
    margin-top: 25px;
    display: flex;
    justify-content: center;
}
.imageslideshow
{
    display: none;
}
.images
{
    height: 400px;
    width: 700px;
    border: 3px solid #FFCACA;
    border-radius: 20px;
}
.imagenumber
{
    position: absolute;
    padding: 8px 12px;
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
    animation-timing-function: ease-in;
}
.content
{
    margin: auto;
    max-width:1070px;
    margin-top:20px;
    text-align: center;
    font-size: 21px;
}
footer
{
    background-color:#251B37;
    height: 40px;
    position: sticky;
    bottom: 0px;
    color: #FFCACA;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright
{
    text-align: center;
    font-size: 20px;
    font-family: 'Raleway', sans-serif
}
.aboutlink:link
{
    color:#FFCACA ;
    text-decoration: none;
}
.aboutlink:visited
{
    color: #FFCACA;
    text-decoration: none;
}
.aboutlink:hover{
    color: #FFECEF; 
    text-decoration:underline;
}
.about-container
{
    font-family:'Rubik', sans-serif;
    text-align: center;
    min-height: 86.5vh;
}
.about-info
{
    font-size: 26px;
    padding: 45px;
    max-width: 900px;
    margin: auto;
}
.socialmedia {
    display: flex;
    justify-content: center;

}

.Logo {
    width: 25px;
    height: 25px;
    padding-left: 7px;
}
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Applying media queries for width less than 600px */
@media only screen and (max-width:600px) {
    body{
        overflow-x: hidden;
        width: 100%;
    }
    .about
    {
        font-size: 13px;
        position: absolute;
        right: 9px;
        top: 14px;
    }
    .images
    {
        height: 185px;
        width:280px;
    }
    .slideshow-container
    {
        margin-top: 15px;
    }
    .content
    {
       font-size: 12px;
       word-wrap: break-word;
       margin-top: 10px;
    }
    header
    {
        height: 40px;
    }
    .title
    {
        font-size: 20px;
        left: 0px;
    }
    .tajlogo
    {
        height: 25px;
        width: 30px;
    }
    .container
    {
        padding: 18px;
    }
    .name
    {
        font-size:15px;
    }
    .card
    {
        padding: 15px;
    }
    footer
    {
        height: 30px;
        display: flex;
        justify-content: center;

    }
    .copyright
    {
        font-size: 13px;
    }
    .about-info
    {
        word-wrap: break-word;
        font-size: 15px;
    }
    .about-container
    {
        height: 91vh;
    }
}
    
/* Applying Media Queries for width less than 900px and greater the 601px*/
@media only screen and (min-width:601px) and ( max-width:900px)
{
    .images
    {
        height:300px;
        width:500px;
        border-radius: 15px;
    }
    .title
    {
        font-size: 25px;
    }
    .tajlogo
    {
        height: 35px;
        width: 40px;
    }
    header
    {
        height: 50px;
    }
    .about{
        font-size: 18px;
        top: 15px;
    }
    .name{
        font-size: 21px;
    }
    .content
    {
        font-size: 18px;
    }
}

