@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: rgba(255, 255, 255, 0.9);
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    min-height: 100vh;
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    padding: 4rem;
}

.info {
    text-align: left;
    max-width: 400px;
}

.title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.5;
    font-family: monospace;
}

.description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.preview-image {
    max-width: 236px;
    max-height: 513px;
}

.btn {
    margin: 4rem 0;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    text-decoration: none;
    transition: 1s;
    font-weight: 500;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    transition: 1s;
}

.footer {
    text-align: center;
}

.link {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.9);
}

ul {
    margin: 2rem 0;
    list-style-type: circle;
}

li {
    color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 825px) {
    .flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4rem;
    }

    .info {
        text-align: center;
    }

    .footer {
        margin-bottom: 4rem;
    }
}