body{
    height: 100dvh;
    background-size: 6rem 4rem;
    background-image: linear-gradient(to right,#e1dcdc 1px,transparent 1px),linear-gradient(to bottom,#e1dcdc 1px,transparent 1px);
    background-color: #f0f0f0;
    font-weight: 400;
    font-family: "Titillium";
    margin: 0;
}

#writes{
    align-items: center;
    text-align: center;
    flex-grow: 1;
    align-content: end;
    padding: 30px;
}

.container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#logo-container{
    flex-grow: 1;
    align-content: end;
    justify-items: center;
}

.logo {
    min-width: 100px;
    min-width: 200px;
    height: auto;
    box-shadow: 0px 0px 80px 30px #f0f0f0;
    background-color: #f0f0f0; /* Light blue background */
}


h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom : 0px;
}

p {
    margin : 0px;
    color: #1f1e1e;
}

@media (max-width: 400px) {
    .logo {
        min-width: 130px;
    }
    p {
        font-size: 1em;
    }
}

/* Regular */
@font-face {
    font-family: 'Titillium';
    src: url('../fonts/titillium/TitilliumWeb-Regular.ttf');
    font-weight: 400; /* Regular weight */
    font-style: normal;
}

@font-face {
    font-family: 'Titillium';
    src: url('../fonts/titillium//TitilliumWeb-SemiBold.ttf');
    font-weight: 600; /* Regular weight */
    font-style: normal;
}

@font-face {
    font-family: 'Titillium';
    src: url('../fonts/titillium/TitilliumWeb-Bold.ttf');
    font-weight: 700; /* Regular weight */
    font-style: normal;
}

.dev-link {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #888; /* Subtle gray */
    text-align: center;
}

.dev-link a {
    color: #ff9800; /* Warm orange */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.dev-link a:hover {
    color: #ff5722; /* Brighter orange on hover */
}