<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(-45deg, rgb(100 100 100), rgb(50 200 50) , rgb(50 100 200), rgb(200 50 50));
    animation: gradient 15s ease infinite;
    background-size: 400% 400%; 
    font-family: montserrat, arial;
}

section {
    position: relative;
    width: 100%;
    padding: 50px;
}

.image {
    position: relative;
    overflow: hidden;
}

.image.image1 {
    width: 250px;
    height: 250px;
    float: left;
    border-radius: 50%;
    margin: 20px;
    shape-outside: circle();
}
.image.image2 {
    width: 300px;
    height: 300px;
    float: right;
    border-radius: 50%;
    margin: 20px;
    shape-outside: circle();
}

.image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section h2 {
    color: rgb(246, 241, 241);
    font-weight: bolder;
    font-size: 2em;
    text-decoration: underline;
    margin-bottom: 20px;
}

section p {
    color: white;
    line-height: 1.5em;
    text-align: justify;
}
table{
    width:80%;
    background-color: rgba(255,255,255,0.3);
    margin: 5%;
    table-layout: fixed;
  }

table h1{
    align-items: center;
    text-align: center;
  
    
}
th{
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: solid 2px rgba(0, 0, 0, 0.1);
  }
  td{

    padding: 15px;
    text-align: left;
    vertical-align:middle;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    border: solid 1px rgba(17, 3, 3, 0.1);
    
  }
  
  
 @keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
  }

  </pre></body></html>