body {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(
    115deg,
     hsl(240deg 91% 56%) 0%,
     hsl(259deg 90% 55%) 16%,
     hsl(279deg 90% 54%) 28%,
     hsl(298deg 89% 53%) 40%,
     hsl(318deg 89% 53%) 50%,
     hsl(337deg 89% 52%) 60%,
     hsl(356deg 88% 51%) 70%,
     hsl(16deg 87% 50%) 80%,
     hsl(35deg 86% 49%) 90%,
     hsl(55deg 86% 48%) 100%
  );
  backdrop-filter: blur(30px);
  background-size: cover;
  background-repeat: no-repeat;
    color: rgb(240,240,240);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    font-family: YanoneKaffeesatzMedium, Verdana, Tahoma, sans-serif;
    height: 200vh;
  width: 100%;
  font-size: clamp(26px, calc(10px + (36 - 20) * (100vw - 768px)/(1920 - 768)), 48px);

}

@font-face {
    font-family: YanoneKaffeesatzMedium;
    src: url(src/fonts/YanoneKaffeesatz-Medium.ttf);
}

.header-bg{
    background-color: rgb(240,240,240,0.4);
    margin-bottom: 30px;
    border-radius: 17px;
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}

.logo{
    max-width: 250px;
    position: relative;
    align-items: center;
    margin: 0 auto;
}

.description{
    padding-top:0;
    padding-bottom: 30px;
}

.h1-title{
    font-size: clamp(30px, calc(10px + (36 - 20) * (100vw - 768px)/(1920 - 768)), 48px);
}

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: 30px;
    margin-bottom: 5px;
}

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

.tile {
    width: 100%;
    margin: 7px;
    border-radius: 17px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(30px);
    color: rgba(255,255,255,0.8);
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
}

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

.tile-share-button {
    margin: 8px;
    width: 40px;
    border-radius: 20px;
    background-color: rgba(22, 22, 22, 0.336);
    border: 1px solid rgba(19, 19, 19, 0.1)6);
    backdrop-filter: blur(30px);
    color: rgba(255,255,255,0.8);
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    border-radius:50%;
    height : 10vw;
    width: 10vw;
    overflow: hidden;
    border: solid 3px #fff;
}

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

/*
.icon {
    margin: 4px 8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
*/

.icon {
    margin: 8px;
    width: 40px;
    border-radius: 20px;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon svg {
    color: rgba(255,255,255,0.8);
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
  }

@media screen and (max-width: 992px) {
    .container {
        max-width: 95%;
    }
    body{
        font-size: clamp(26px, calc(10px + (36 - 20) * (100vw - 992px)/(992 - 768)), 48px);
    }
    .image-container {
        height : 20vw;
        width: 20vw;
    }
  }

  @media screen and (max-width: 480px) {
    .image-container {
        height : 30vw;
        width: 30vw;
    }
  }