@import "navbar.css";
/**{
    margin: 0;
}*/

body{
    background-color: #f4f4f4;
    color:#555;
    font: normal 16px sans-serif;
    line-height: 1.6em;
    margin: 0;
}

.container{
    width: 80%;
    margin: auto;
    overflow:hidden;
}
#showcase{
    background-image:url('images/orange1.png');
    background-position: center right;
    min-height: 300px;
    margin-bottom: 30px;
    text-align: center;
}
#showcase h1{
    color: #fff;
    font-size: 50px;
    line-height: 1.6em;
    padding-top: 30px;
}
main{
    float: left;
    width: 70%;
    padding: 0 30px;
    box-sizing: border-box;
}
#sidebar{
    float: right;
    width: 30%;
    background: #333;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}
#main-footer{
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
@media(max-width: 600px){
    #main{
        width:100%;
        float:none;
    }
    #sidebar{
        width: 100%;
        float: none;
    }
}
.block{
    float: left;
    width: 33.3%;
    border: 1px solid #ccc;
    padding:10px;
    box-sizing: border-box;
}




.button{
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border: none;
}
.button:hover{
    background-color: red;
    color: white;
}
.clr{
    clear:both;
}
.box-1{
    background-color: #333;
    color:#fff;

    border: 5px red solid;

    padding: 5px 25px;

    margin:20px 0px;
}
.box-1 h1{
    font-family: Tahoma;
    font-weight:800;
    font-style: italic;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    word-spacing: 1em;
}
.box-2{
    border:3px dotted #ccc;
    padding:20px;
    margin:20px;
    color: black;
}
a{
    text-decoration: none;
    color:#000;
}
a:hover{
    color:red;
}
a:active{
    color:blue;
}
.categories{
    border: 1px white solid;
    padding: 10px;
    border-radius: 15px;
}
.categories h2{
    text-align: center;
}
.categories ul{
    padding: 0;
    padding-left:20px;
    list-style: none;
}
.categories li{
    padding-bottom: 6px;
    border-bottom: dotted 1px #333;
    list-style-image: url('images/check10x10.jpg');
}
.my-form{
    padding: 20px;
}
.my-form .form-group{
    padding-bottom: 15px;
}
.my-form label{
    display:block;
}
.my-form input[type="text"], .my-form textarea{
    padding: 8px;
    width: 100%;
}
#main-block {
    float: left;
    width: 70%;
    padding:15px;
    box-sizing: border-box;
}
.p-box{
    width: 800px;
    height: 500px;
    border: 1px solid #000;
    margin-top: 30px;
    position: relative;
    background-image:url('images/light-abstract-img.jpeg');
    background-repeat: no-repeat;
    background-position: top right;
}
.p-box h1{
    position: absolute;
    top: 100px;
    left: 200px;
}
.p-box h2{
    position: absolute;
    bottom: 100px;
    right: 200px;
}
.fix-me{
    position: fixed;
    top: 400px;
}
.my-list li:first-child{
    background: red;
}
.my-list li:last-child{
    background: blue;
}
.my-list li:nth-child(5){
    background: yellow;
}
.my-list li:nth-child(even){
    background: darkgray;
}
.my-list li:nth-child(uneven){
    background: lightgrey;
}



/* healthpanel.css */





#main-header{
    background-color: #333;
    color:#fff;
}
#hp {
    font-size: 45px;
    font-weight: 300;
    margin: 10px;
}

#hp span {
    font-size: 30px;
}

p {
    font-size: 20px;
}

.containerhp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;

}

.containerhp > div {
    cursor: pointer;
    height: 210px;
    background-size: cover;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    transition: all 0.5s ease-in;
}

.containerhp > div:hover {
    opacity: 0.7;
}

.containerhp > div:nth-of-type(1) {
    grid-column: 1 / 3;
}

.containerhp > div:nth-of-type(6) {
    grid-column: 3 / 5;
}

.containerhp > div:nth-of-type(9) {
    grid-column: 3 / 5;
}

.containerhp > div:nth-of-type(10) {
    grid-column: 1 / 3;
}

.bg1 {
    background: url('https://i.ibb.co/dBLbrRV/bg1.jpg');
    color: #fff;
}

.bg2 {
    background: url('https://i.ibb.co/Fb5jb3J/bg2.jpg');
    color: #333;
}