h3{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 1000;
    align-items: center;
    justify-content: center;
}
li{
    color: red;
}
p{
    color: red;
}
body{
    background:url("home.jpg");
    
}

.logo{
    
    background: url("new2.png");
    width: 300px;
    height: 60px;
    
}
:root{
    --orange: orange;
}


*{
 font-family:'Times New Roman', Times, serif;
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 text-decoration: none;
 border: none;
 outline: none;
 text-transform: capitalize;
 transition: all .2s linear;
}

*::selection{
    background-color: var(--blue);
    color:azure;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

header{
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    background: url("home.jpg");
    box-shadow: 0 .1rem .3rem black;
    width: 100%;
}

header .heading{
    font-size: 3rem;
    color: green;
    padding: 1rem;
    text-align:center
}
header #menu{
    font-size: 3rem;
    color: grey;
    cursor:pointer;
    margin:1rem;
    display: none;
}

header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    background: rgb(42, 69, 71);
    padding: 1rem;
    
}

header .navbar ul li{
    margin: 0 3rem;
}

header .navbar ul li a{
    font-size: 2rem;
    color: white;
}

header .navbar ul li a:hover{
    color: yellow;
}



















@media (max-width:768px){
    html{
         font-size: 55%;
    }
}

@media (max-width:500px){
    html{
         font-size: 50%;
    }
    header{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
    }

    header #menu{
        display: block;

    }
    header .navbar{
        position: fixed;
        top: 6.2rem;
        right: -120%;
        height: 100%;
        width: 100%;
       border-top: .2rem solid rgba(0, 0, 0, .3);
    }
    
    header .navbar ul{
        height: 100%;
        width: 100%;
        flex-flow: column;
        background: #fff;
        padding-bottom: 15rem;

    }

    header .navbar ul li{
        text-align: center;
        width: 100%;
        margin: 1rem 0;
    }

    header .navbar ul li a{
        font-size: 4rem;
        color: #333;
        display: block;
    }

    header .navbar ul li a:hover{
        color: var(--orange);
    }

    .fa-times{
        transform: rotate(180deg);
    }
    header .navbar.nav-toggle{
        right: 0;
    }

}
body{
    background: url("background.jpg");
    
}
.logo{
    
    background: url("logo1.png");
    width: 598px;
    height: 66px;
    
}
body{
    margin-top: 20px;
    background-color: lightgrey;
}

.main{
    padding: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.topbar{
    background-color: orange;
    overflow: hidden;
}

.topbar a{
    float: right;
    color: whitesmoke;
    text-align: center;
    padding: 20px 26px;
    text-decoration: none;
    font-size: 26px;
}

.sidebar{
    background-color:grey;
    color: white;
    height: 100%;

}
.sidebar a{
    margin-left: 10px;
    display: block;
    color: white;
    padding-bottom: 10px;
    font-size: 30px;
    text-decoration: none;
}
.card{
    position: relative;
    display: flex;
    flex-direction: column;
}
.content{
    background-color:white;
}


