@import url('https://fonts.googleapis.com/css2?family=Fondamento:ital@0;1&display=swap');

* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Fondamento';
}

html,
body {
    height: 100%;
}

body {
    background: radial-gradient(circle at center, #18221a, #04100d) no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container {
    width: 80%;
    max-width: 700px;
    padding: 20px;
    max-height: 550px;
    background-color: var(--container-background);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    overflow: visible;
}

#container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 500;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: 200ms ease;
    opacity: 0.8;
    font-weight: bold;
}

a:hover {
    transform: scale(1.04);
    opacity: 1;
}

.privacy-content {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.4) var(--container-background);
    scrollbar-gutter: stable always;
    position: relative;
}

.privacy-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.privacy-content h2 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.mini-sharko {
    position: absolute;
    top: -150px;
    left: -100px;
    width: 200px;
    z-index: 1000;
    transform: rotate(-45deg) scale(0.7);
}

.go-back {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: white;
}

.go-back i {
    transform: scale(3) rotate(180deg);
}