body {
    background-color: aqua;
    border-color: black;
    border: solid 30px;
    margin: auto; 
    border-radius: 25px;
    background-image: linear-gradient(to bottom right, aqua, red);
}
#jello{
    width: 1024px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid gray;

}
.container {
    
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 30px;
    padding-top: 15px;
    padding-right: 30px;
    background-color: greenyellow;
    border-radius: 25px;
    box-sizing: border-box;
    width: auto;
 }   

      


.flexbox{
    display: flex;
    border: 5px black solid;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    list-style-type: none;
    gap: 50px;
    background-color: aqua;
    padding: 10px
    
}
.grid > div{
    display: grid;
    grid-template-areas: 
    'header header header header header'
    'menu menu main main main main'
    'footer footer footer footer footer footer';
}
.item1{
    grid-area: header;
    border: 5px black solid;
    text-align: center;
}
.item2{
    grid-area: menu;
    border: 5px white solid;
    text-align: center;
}
.item3{
    grid-area: main;
    
    text-align: center;
}
.item4{
    grid-area: footer;
    text-align: center;
}
.flexbox2{
    display: flex;
    
    flex-direction: row;
    align-content: center;
    list-style-type: none;
   flex-wrap: wrap;
    gap: 10px;
}
.phototrans{
    transform: rotate(5deg);
    width: fit-content;
}
.phototrans2{
    transform: skewY(5deg);
    width: fit-content;
}
.photext{
    background-color: aliceblue;
    display: flex;
    z-index: +1;
    align-items: flex-start;
    position: relative;
    bottom: 100px;
    border: 5px black solid;
    width: fit-content;
}

a:hover{
    background-color: yellow;
    width: fit-content;
}
#table{
    border-collapse: collapse;
    width: fit-content;
    display: flex;
    margin-left: auto;
    position: absolute;
    top: 300px;
    left: 600px;
}
#table td, table th{
    border: 5px solid black;
    padding: 8px;
    text-align: center;
}
#table tr:hover{background-color: aqua;}
#table th{
    padding: 12px;
    text-align: center;
    background-color: greenyellow;
    color: rgb(5, 4, 4);
}
.taborder{
    background-color: white;
    border: black 5px solid;
    padding: 10px;
    width: fit-content;

}
.info{
    display: flex;
    
    justify-content: end;
    align-content: space-around;
    position: absolute;
    top: 300px;
    left: 700px;
}
.audio{
    position: absolute;
    left: 700px;
    top: 500px;
}
.video{
    position: absolute;
    left: 650px;
    top: 200px;
}
.photext2{
    display: flex;
    justify-content: center;
    padding: 30px;
}


