#wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #FFF;
}

#hero {
    text-align: center;

    h1 {
        margin-top: 1em;
    }
}

#hero img {
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, .4) 0 4px 15px;
	transition: transform 0.3s ease;

	&:hover {
		transform: scale(1.01);
	}
}

.threeCol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    margin: 2em 0 3em 0;
}

.col {
    flex: 0 1 28%;

    h2 {
        text-align: center;
        margin-bottom: 1em;
    }

    p {
        margin-top: 1em;
    }
}

.readingLog {
    box-shadow: rgba(0, 0, 0, .4) 0 4px 15px;
	transition: transform 0.3s ease;

	&:hover {
		transform: scale(1.02);
	}
}

@media screen and (max-width: 600px) {
    #textContent {
        width: 100%;
    }
}

@media (prefers-color-scheme: dark) {
    #wrapper {
        background-color: transparent;
    }

    #hero img {
        box-shadow: rgba(0, 0, 0, .8) 0 8px 15px;
    }
}