:root {
    --color1: #B071FF;
    --color2: #FF9C71;
}
@media (prefers-color-scheme: light) {
    :root {
        --text: #130903;
        --background: #fdf8f5;
        --primary: #dc7f3b;
        --secondary: #e1b49a;
        --accent: #d2ab68;
    }
}
@media (prefers-color-scheme: dark) {
:root {
    --text: #fcf3ed;
    --background: #090402;
    --primary: #c36522;
    --secondary: #66391e;
    --accent: #956f2d;
    }
}
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}
h1 {color: #ffffff;}
h6 {color: #ffffff; margin-top: 0px; margin-bottom: 1em;}
h3 {color: #ffffff; margin-top: 0px;}
form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
input {
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--accent);
    border-radius: 5px;
    font-size: 16px;
    background-color: var(--background);
    color: white;
}
button {
    padding: 10px 20px;
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
button:hover {
    background-color: var(--secondary);
}
#shortened-link {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text);
    list-style: none;
    padding: 0;
}
#shortened-link li {
    margin-bottom: 10px;
    list-style-type: none;
}
#shortened-link li::before {
    content: "\\2022"; /* Unicode character for a bullet point (\u25cb) */
    color: #4caf50; 
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.header {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}
.header a {
    display: flex;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 10px;
}
.header img {
    margin-right: 5px;
}
svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(100px);
}