body{
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: 100% 100%;
} 

.body1{
    background-image: url('./images/bg1.webp');
}

.body2{
    background-image: url('./images/bg2.jpg');
}

.body3{
    background-image: url('./images/bg3.webp');
}

.body4{
    background-image: url('./images/bg5.jpg');
}

.content{
    position: absolute;
    top: 300px;
    left: 500px;
}

footer{
    text-align: center;
}
.home__social {
    display: grid;
    grid-template-columns: max-content;
    row-gap: 1rem;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.flex_table{
    display: flex;
    flex-direction: row;
}

.flex_table .contents{
    flex:1;
    text-align: center;
    align-items: center;
    background: radial-gradient(white, rgba(60, 60, 255, 0.533));
    padding-top: 200px;
    padding-bottom: 200px;
}

.flex_table .images{
    flex:1;
    justify-content: center;
    background-color: white;
}

.fullwrap{
    position:relative;
    max-width: 600px;
    max-height: 600px;
}

.fullwrap img{
    width: 100%;
}

.fullcap{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    padding-top: 60%;
    background-color: rgba(0,0,0,0.7);
    color: white;
    visibility: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.fullwrap:hover .fullcap{
    visibility: visible;
    opacity: 1;
}

.tabula td, th, tr{
    color:white;
}


.zoom {
    transition: transform .2s; /* Animation */
}
  
.zoom:hover {
    transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* (A) WRAPPER */
.hoverwrap {
    position: relative; /* required for (c2) */
    max-width: 500px;   /* optional */
}
  
  /* (B) RESPONSIVE IMAGE */
.hoverwrap img { width: 100%; }
  
  /* (C) CAPTION */
.hovercap {
    /* (C1) DIMENSIONS */
    box-sizing: border-box;
    width: 110%;
    padding: 10px;
   
    /* (C2) PLACE AT BOTTOM */
    position: absolute;
    bottom: -15; left: -15;
   
    /* (C3) COLORS */
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
  
  /* (D) SHOW/HIDE */
.hovercap {
    visibility: none; opacity: 0;
    transition: opacity 0.3s;
}
.hoverwrap:hover .hovercap {
    visibility: visible; opacity: 1;
}

.edu-tabula{
    border-radius: 30px;
}

.edu-tabula th{
    border: qhite;
    border-style: inherit;
    background-color: red;
    font-weight: bold;
    color: white;
}

.edu-tabula td{
    border: white;
    border-style: inherit;
    background-color: rgb(189, 198, 97);
    color: black;
    font-weight: bolder;
}

.edu-tabula .tada{
    border-right:rgb(189, 198, 97);
    border-style: inherit; 
    /* What is this? if i remove inherit then its not working!! */
}


.accordion{
    width: 70%;
    max-width: 500px;
}

#Welcome div{
    position: absolute;
    top: 20%;
    right:15%;

}
#Welcome img{
    position: absolute;
    top: 4%;
    left: 20%;
}

#hobba div{
    font-weight: bold;
}

#hobba .lead{
    font-weight: bold;    
}


