@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@font-face {
    font-family: 'Sf Pro Display';
    src: url(SFPRODISPLAYREGULAR.OTF) format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, *{
    margin: 0;
    padding: 0;
  }
  body {
    background-color: black;
    overflow-x: hidden;
    min-height: 100vh;
  }
  html {
    overflow-x: hidden;
  }

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}
div.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/vonal.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -10px;
    z-index: 0;
    width: 100%;
    height: 100%;
    animation: liquidWaves 7s ease-in-out infinite;
    margin-top: 1rem;
}
div.main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 1)
    );
    z-index: 1;
    width: 102%;
    height: 110%;  
}
div.main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: white;
    z-index: 1;
    overflow: hidden;
}

@keyframes liquidWaves {
  0%   { transform: scale(1) skew(0deg, 0deg) translate(0, 0); }
  25%  { transform: scale(1.01) skew(-0.4deg, 0.3deg) translate(2px, -3px); }
  50%  { transform: scale(1.015) skew(0.2deg, -0.3deg) translate(-2px, 2px); }
  75%  { transform: scale(1.01) skew(-0.5deg, 0.4deg) translate(3px, -1px); }
  100% { transform: scale(1) skew(0deg, 0deg) translate(0, 0); }
}
article {
    z-index: 10;
    height: auto;
    width: 70%;
    height: 100%;
    margin: auto;
    padding: 5rem 0;
    font-family: "Cabin", sans-serif;
    line-height: 1.6;
    color: #b0b0b0;

}
.privacy-policy h1 {
    font-size: 24px;
    font-family: "Archivo Black", serif;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.privacy-policy h2 {
    font-size: 20px;
    margin-top: 30px;
    color: #ffffff;
    font-family: "Archivo Black", serif;
}
.privacy-policy ul, .privacy-policy dl {
    margin-left: 20px;
}
.privacy-policy dt {
    font-weight: bold;
    margin-top: 10px;
}
.privacy-policy address {
    font-style: normal;
    background: rgba(51, 51, 51, 0.7);
    padding: 10px;
    border-left: 4px solid #a0a0a0;
    color: white;
    width: 50%;
    border-radius: 20px;
}
.privacy-policy a {
    text-decoration: underline;
    color: white
}