@font-face {
    font-family: Custom;
    src: url('./font/GlacialIndifference-Regular.otf');
}

body {
  background-color: #d8357e;
  color: #555;
  font-size: 1.1em;
  font-family: "Custom", Helvetica, Arial, sans-serif;
  /* overflow: hidden; */
  margin: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}
.content{
    
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding-bottom: 64px;
    /* padding: 30px 32px; */
}
.head{
    background: #ffd7e9;
    display: flex;
    justify-content: center;
    padding: 40px 32px;
}
.links-l{
    background: #d8357e;    
    display: flex;
    justify-content: center;
    padding: 30px 15px 15px 15px;
}
.info{
    align-items: center;
    display: flex; 
    flex-direction: column;
    margin: 0 auto;
    height: 100%;
    width: 100%;   
    z-index: 1000;
}

.bubble {
  position: absolute;
  width: 10vw;
  height: 10vw;
  min-width: 60px;
  min-height: 60px;
  max-width: 150px;
  max-height: 150px;
  color: #3a8de0;
  border-radius: 50%;
  z-index: 1;
}

.bubble-dummy {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  border: 0.2em solid currentColor;
  /**animation: bubbleUp 1200ms ease-out forwards;**/
}
.logo{
    background: #ffd7e9;
}
img.logo{
    
    height: auto;
}
.logosvg{
    width: 200px;
    height: auto;
}


.links{
    background: #d8357e;
    width: 100%;
    max-width: 680px;
}
.links-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 10px;
}
.links-list li{    
    
}
.links-list li a{
    align-items: center;
    display: flex;    
    font-weight: 600;    
    gap: 10px;
    background: #ffffff;
    border: solid 1px #d8357e;
    border-radius: 26px;
    justify-content: center;    
    text-decoration: none;    
    padding: 5px 50px 5px 10px;
    z-index: 500;    
}
.links-list li a .icon{
    width: 45px ;
    height: 45px;
    flex: 0;
    /* filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(563%) hue-rotate(292deg) brightness(95%) contrast(92%);; */
    filter: brightness(0) saturate(100%) invert(26%) sepia(95%) saturate(1375%) hue-rotate(304deg) brightness(97%) contrast(93%);
}
.links-list li a:hover .icon{
    transform: scale(1.1);
    transition: ease 300ms;
}
.links-list li a .link-title{
    color: #000;
    flex: 1;
    text-align: center;
    font-size: 15px;
    margin-left: -15px;
}

@keyframes bubbleUp {
  from {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.heart {
  width: 100%;
  height: 100%;
  background: transparent;
}

.heart path {
  fill: #ffbfda;
  stroke: none;
}