@import "variables.css";

html {
    box-sizing: border-box;
    background-image: radial-gradient(
        rgba(80, 39, 36, 0.3) 10%,
        transparent 10%
    );
    background-size: 30px 30px;
    background-attachment: fixed;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    color: #60442c;
}

.green {
    color: green;
}
.blue {
    border-radius: 5px;
    background-color: #0070bb;
    color: white;
    border: 2px solid black;
}

.content {
    box-sizing: border-box;
    margin-left: var(--sidebar-width);
}

h1 {
    text-align: center;
    font-size: 4rem;
}

h2 {
    text-decoration: underline;
    font-size: 2rem;
}

.post {
    max-width: 90%;
    font-size: 1.5rem;
    isolation: isolate;
}

.container {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: var(--sidebar-width);
    margin-right: var(--sidebar-width);
    padding: 20px;
    /*TODO*/
    background: radial-gradient(white, transparent);
    p {
        font-size: 1.2rem;
    }
}

/* Phone Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 20px;
        margin: 0;
    }
}
