@import url('https://fonts.loli.net/css2?family=Noto+Sans:wght@400;700&display=swap');

body {
    background-color: #F5F5F5;
    font-family: 'Noto Sans', sans-serif;
    background-image: url('/img/background.png'); /* Replace with your image path */
    background-size: cover; /* Scales image to fit the screen */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    background-attachment: fixed; /* Keeps image fixed while scrolling */
}
h1 {
    color: #52e5e3;
    text-align: center;
    /* margin-top: 50px; */
}
p {
    text-align: center;
    color: #b7e9e7;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(128, 128, 128, 0.8);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.file-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.file {
    background-color: #52e5e3;
    padding: 10px 20px;
    color: black;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}
.file:hover {
    background-color: #42caca;
}
.linktext {
    text-align: center;
}

.linktext a {
    color: #b7e9e7; /* Light blue-green color */
    text-decoration: none; /* Remove underline (optional) */
}

.linktext a:hover {
    color: #92d7d5; /* Slightly darker shade for hover effect */
    text-decoration: underline; /* Underline on hover (optional) */
}

.text {
    text-align: center;
    color: red;
}
