* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-family: sans-serif;
}

body {
    background-color: #E2E5EC;
}

#layout {
    max-width: 975px;
    margin: 0px auto;
    text-align: center;
}

#hero {
    background-image: url("../images/andy-brown-cVLHo7nJumQ-unsplash.jpg");
    height: 100vh;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero .hero-content {
    text-align: center;
    color: #F3F6EF;
}

#hero .hero-content h1 {
    font-size: 55px;
    font-family: 'Times New Roman', Times, serif;
}

#hero .hero-content #buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

#hero .hero-content p a {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    color: #F3F6EF;
    background-color: #0d4674;
    padding: 20px;
    border-radius: 10px;
    transition:
        background-color .5s;
}

#hero .hero-content p a:hover {
    background-color: #79abd5;
}

.single-column {
    min-width: 600px;
    max-width: 1200px;
    margin: 0px auto;
}

#card-section {
    background-color: #3378B1;
    color: #F3F6EF;
    padding: 48px;
}

.card-container {
    display: flex;
    justify-content: space-between;
}

.card {
    flex: 1;
    border: 3px solid #F3F6EF;
    padding: 32px;
    text-align: center;
    margin: 24px;
}

.card h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    margin: 0px;
}

.card p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    margin: 24px 0px 0px;
}

.card p a {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    color: #F3F6EF;
    background-color: #0d4674;
    padding: 20px;
    border-radius: 10px;
    transition:
        background-color .5s;
}

.card p a:hover {
    background-color: #79abd5;
}

#heading {
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

#gallery-description {
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

#gallery-description a {
    display: inline-block;
    text-decoration: none;
    color: #F3F6EF;
    background-color: #0d4674;
    padding: 20px;
    border-radius: 10px;
}

.gallery-heading {
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    padding-bottom: 24px;
}

.illustrator-gallery {
    columns: 3;
    column-gap: 24px;
}

.illustrator-gallery img {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 10px;
}

.photoshop-gallery {
    columns: 3;
    column-gap: 24px;
}

.photoshop-gallery img {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 10px;
}

.fanart-gallery {
    columns: 3;
    column-gap: 24px;
}

.fanart-gallery img {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 10px;
}

.personal-art-gallery {
    columns: 3;
    column-gap: 24px;
}

.personal-art-gallery img {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 10px;
}

.web-dev-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 24px;
}

.web-dev-gallery .button {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 24px;
}

.web-dev-gallery a {
    text-decoration: none;
    display: inline-block;
    color: #F3F6EF;
    background-color: #0d4674;
    padding: 20px;
    border-radius: 10px;
}

.web-dev-gallery a:hover {
    background-color: #79abd5;
}

.web-dev-gallery img {
    width: 100%;
    border-radius: 10px;
}