body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background-color: #333;
    color: white;
    background-image: url('website BG.png');
    background-size: cover;
}

.main-container {
    width: 80%;
    min-height: 150vh;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content {
    margin-top: 2rem;
}

a {
    color: grey;
    text-decoration: none;
}

a:hover {
    color: #A9A9A9;
    text-decoration: underline;
}

h1 {
    font-size: 3em;
    color: white;
}

p {
    font-size: 1.2em;
    color: white;
    line-height: 1.6;
}

/* Image styling */
img {
    margin: 0.5rem;
    max-width: 150px;
    border-radius: 8px;
}

/* Button styling */
button {
    margin-top: 1rem;
    padding: 10px 20px;
    background-color: grey;
    border: none;
    border-radius: 6px;
    color: black;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #ffaa33;
}
::-webkit-scrollbar-track {max-height: 50%; height: 50%;}