@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    margin: 0 15rem;
    background-color: #020617;
    color: #ffffff;
    font-family: 'Noto Sans Mono', 'Ubuntu Sans Mono', monospace;
    
}

a {
    color: #ffffff;
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 85px;
    background-color: #020617;
}

footer {
    text-align: center;
}

section {
    width: 100%;
    margin: auto;
    padding-top: 90px;
}

/* Structure styles */
.flex {
    display: flex;
    align-items: center;
}

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.button {
    padding: 10px 20px;
    background: linear-gradient(90deg, #60a5fa, #34d399);
    color: #ffffff;
    border-radius: 15px;
    transition: transform 0.5s;
    width: fit-content;
}

.button:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.logo {
    width: 50px;
    margin-right: 20px;
}

/* Project specific styles */
.app-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.app-description {
    margin-bottom: 50px;
}

.app-info, .app-icon {
    width: 100%;
}

.app-icon {
    text-align: right;
}

.app-icon-mini {
    display: none;
}

.footer-icon {
    vertical-align: -0.25em;
}

@media screen and (max-width: 1024px) {
    body {
        margin: 0 5rem;
    }

    .app-icon {
        display: none;
    }

    .app-icon-mini {
        display: block;
        width: 100px;
        margin-right: 10px;
    }

    .app-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 425px) {
    body {
        margin: 0 1rem;
    }

    .app-icon-mini {
        width: 50px;
    }

    .button {
        margin: auto;
    }
}