/* Import the Finger Paint font */
@import url('https://fonts.googleapis.com/css2?family=Finger+Paint&display=swap');

/* Import the Inter-Regular and Inter-Bold fonts */
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.9cd7588.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.3e3cb90.ttf') format('truetype');
    font-weight: bold;
}

/* Basic body styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    margin: 0;
    padding: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    color: #ffffff;
    text-align: center;
}

.logo {
    width: 300px;
    margin-bottom: 20px;
}

.monogram-link {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
}

.monogram-link img {
    width: 100%;
}

.nav-links {
    position: absolute;
    top: 10px;
    left: 150px;
    right: 150px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    color: #bb8868;
    text-decoration: none;
}

.nav-links a:hover {
    text-decoration: underline;
}


h1 {
    font-family: 'Finger Paint', cursive;
    font-weight: normal;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #bb8868;
}

form {
    background-color: #000000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#fileManager {
    background-color: #000000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

button {
    padding: 10px;
    background-color: #bb8868;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

button:hover {
    background-color: #7e6657;
    cursor: pointer;
}

#cookieConsent {
    position: fixed;
    bottom: 20px;
    right: -400px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: right 0.5s ease-in-out;
    width: 350px;
}

#cookieConsent.show {
    right: 20px;
}

#cookieConsent .cookie-text {
    flex-grow: 1;
    font-size: 0.9em;
    margin-right: 10px;
}

#cookieConsent .cookie-text a {
    color: #ffc84b;
    text-decoration: underline;
}

#cookieConsent .cookie-btn {
    background-color: #ffc84b;
    color: #333;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

#cookieConsent .cookie-btn:hover {
    background-color: #ffb01b;
}
