.boxCont{
    display: flex;
    flex-direction: column;
  
}
body{
    margin:1%;
    padding: 0;
    background-image: url("Images/beetingheartrbtgif.gif");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left;
    background-size: cover;
    animation-direction: alternate;
   
}
#mainbox{

  border: 5px solid white;
  border-radius: 5px;
  height: 3000px;
  width: 1000px;
  background-color: skyblue;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  
  top: 0px;
  right: 0px;

}
#logo{
    display: center;
    flex-direction: center;
    height:200px;
    transition: transform 0.3s ease;
}
#logo:hover{
    transform: scale(1.1);
}
  /*   animation: 3s ease-in-out 0s infinite running myScale;
}
@keyframes myScale{
    50%{transform: scale(1.1, 1.1);} */
header{
    background: linear-gradient(to top, skyblue, pink);
    border-bottom: 10px solid white;
    display: flex;
    flex-direction: column;
}
.main{  
    display:flex;
    flex-direction: row;

    justify-content: space-around;
    flex-wrap: wrap;
 

}
.box{
    margin: 10px;
    border: 4px solid;
    border-radius: 5px;
  
}
.windowBox{
 
    height: 25px;
    background-color: grey;
    border-bottom: 2px solid;
    display: flex;
    justify-content: space-between;
}
.windowText{
    display:flex;
    background-color: none;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0.2rem;
    
}
.windowAsset{
    background-color: white;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
     border-left: 2px solid;
     
}
.windowAsset ul{
    margin:0;
    padding:0;
    display: flex;
}
.windowAsset li{
    list-style: none;

    
}
.windowAsset li a {
    text-decoration: none;
    color: black;
    padding: 0.2rem;
    display: block;
    
   
 
}
#centerBox{
    height: 500px;
    width: 400px;
 
    background-color:lightpink;
}
#rightBox{
    height: 500px;
    width: 250px;

    background-color: tomato;
}
#Box3{
      height: 500px;
    width: 250px;
    background-color: blue;
}
#Box4{
    height: 500px;
    width: 800px;
 
    background-color:lightpink;
}
.leftButtons{
    margin: 2%;
    margin-right: 98%;
    margin-top: 2px;
    width: 96%;
    height: 30px;
    display: flex;
    text-align: left;
    transition: transform 0.1s ease;
}
.leftButtons:hover{
    transform: scale(1.05);
}
#footer {
   left:0px;
   bottom:0px;
   height:30px;
   width:100%;
   background:#999;
    float:left;
}

.navBar{
    position:sticky;
    top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: grey;
    color: white;
  }
 .brand-title{
     font-size: 1.5rem;
     margin: .5rem;
 }
.navbar-links ul {
    margin:0;
    padding:0;
    display: flex;
}
.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
}

.navbar-links li:hover{
    background-color: black;
}
.toggle-button{
    position: absolute;
    top: 0.2rem;
    right: 0rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 40px;

    
}

.bar{
    height: 40px;
    width: 100%;
    border-radius: 0px;
}

@media (max-width: 800px) {
    .toggle-button{
        display:flex;
    } 
    .navbar-links{
        display:none;
        width: 100%;
    }
    .navBar{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul{
        width:100%;
        flex-direction: column;
    }
    .navbar-links li{
        text-align: center;
    }
    .navbar-links li a{
        padding: .5rem 1rem;
    }
    .navbar-links.active{
        display: flex;
    }
}
@media (max-width: 800px){
    #mainbox{
        width:100%;
       
    }
    header{
        width:100%;
    }
    #logo{
        height: 100%;
        width: 100%;
    }
    .main{
  align-items: center;
justify-content: flex-end;
flex-direction: column;
    }
}