/* Reset some default styles */
html {
    background-color: #000000;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    position: relative;
}

body::after {
    content: '';
    background-image: url('AthleticTool-2.png'); /* Replace with your image file path */
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0.8;
}

/* Center the content */
.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
        color: white; /* Change text color if needed */
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for better text visibility */
}

h1 {
    font-size: 4rem; /* Adjust the size as needed */
    margin: 0;
}

p {
    font-size: 1.5rem; /* Adjust the size as needed */
    margin: 10px 0 0;
}

a {
    color: white; /* Change link color if needed */
    text-decoration: none;
}

.privacy-link {
    margin-top: 20px;
    font-size: 1rem;
}

.privacy-content {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}

.privacy-content ul {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-content li {
    margin: 10px 0;
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
}

.privacy-content p {
    margin: 15px 0;
    line-height: 1.6;
}

.back-link {
    margin: 40px 0;
}