<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    padding: 0;
    background: #fc4a1a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(180deg, #6eef57, #049007);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(180deg, #6eef57, #049007);
    color: rgb(4, 4, 4);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: Verdana, Tahoma, sans-serif;
}

header {
    width: 95%;
    max-width: 788px;
    display: flex;
    justify-content: flex-end;
    padding: 12px;
    margin-top: 15px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgb(240,240,240);
}

.share-button svg {
    margin-left: 12px;
    margin-top: 10px;
    color: rgb(0,0,0);
}

.container {
    width: 91%;
    max-width: 680px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 36px;
    margin-bottom: 30px;
}
h2 {
  font-size: 22px;
    margin-bottom: 30px;
}
h3 {
  font-size: 28px;
  margin-bottom: 30px;
}
h4 {
  font-size: 32px;
  margin-bottom: 30px;
}
h2-icon {
  font-size: 38px;
    
}

a {
    text-decoration: none;
    color: rgb(240,240,240);
}

.tile {
    width: 100%;
    
    background: #fc4a1a;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #eea81b, #fc4a1a);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #eea81b, #fc4a1a); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
    border: 3px solid #eee;
    margin: 7px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
}

.tile:hover {
    transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
    transform: scale(1.02);
}

.tile-share-button {
    margin: 8px;
    width: 55px;
    height: 55px;
    border-radius: 20px;
    background-color: rgb(60, 60, 60);
}

.tile-share-button svg {
    margin-left: 12px;
    margin-top: 10px;
}


.image-container {
    height: 200px;
    width: 200px;
    border-radius: 48px;
    overflow: hidden;
}

.image-container img {
    height: 100%;
}

.icon {
    margin: 6px 6px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
}
.heading{
    line-height: 1px;
    display: inline-block;
    align-items: center;
}



  
    
  a {
    color: #fff;
    text-decoration: none;
  }
  
  .container2 {
    display: flex;
    gap: 0.5rem;
  }
  
  .icon2 {
    transition: 0.15s ease-out;
  }
  
  .img2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #0f8e15;
  }
  
  .container:hover &gt; .icon {
    filter: blur(2px);
    transform: scale(0.95);
  }
  
  .container:hover .icon:hover {
    filter: blur(0);
    transform: scale(1);
  }
  
  .facebook .img {
    background-color: var(--facebook);
  }
  .twitter .img {
    background-color: var(--twitter);
  }
  .instagram .img {
    background-color: var(--instagram);
  }
  .github .img {
    background-color: var(--github);
  }
  .youtube .img {
    background-color: var(--youtube);
  }</pre></body></html>