body {
    background-color: #a6a6a6;
    color: #222222;
    font-family: Arial, Verdana, sans-serif;
    margin: 0;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    height: auto;
}


/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
}

header h1 {
    color: #0057e7;
    font-size: 36px;
    margin: 0;
}

header nav a {
    color: #0057e7;
    text-decoration: none;
    margin-left: 25px;
    font-size: 18px;
}


/* MAIN */

main {
    text-align: center;
}


/* HOME PAGE */

main > h1 {
    color: #0057e7;
    font-size: 42px;
}


main > h2 {
    color: #222222;
    font-size: 28px;
}


main > p {
    font-size: 20px;
    line-height: 1.6;
}


main img {
    width: 100vw;
    max-width: none;
    height: auto;
    display: block;
    margin: 40px 0;
}


/* BIOGRAPHY PAGE */

.bio-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 50px 70px;
    text-align: left;
}

.bio-section h1 {
    color: #0057e7;
    font-size: 42px;
}

.bio-text {
    width: 55%;
}

.bio-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bio-image {
    width: 35%;
}

.bio-image img {
    width: 100%;
}

.bio-bottom {
    text-align: left;
    padding: 30px 70px;
}

.bio-bottom h2 {
    color: #0057e7;
    font-size: 30px;
}

.bio-bottom p {
    font-size: 20px;
    line-height: 1.5;
}

.check {
    color: #0057e7;
    font-size: 22px;
    font-weight: bold;
}


/* PORTFOLIO PAGE */

.portfolio-section {
    padding: 50px;
}

.portfolio-section h1 {
    color: #0057e7;
    font-size: 42px;
}

.portfolio-gallery {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.portfolio-card {
    width: 30%;
}

.portfolio-card img {
    width: 100%;
    display: block;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.25);
}

.portfolio-card h2 {
    color: #0057e7;
    font-size: 24px;
    margin-top: 20px;
}


/* CONTACT PAGE */

.contact-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 60px 100px;
    text-align: left;
}


.contact-message {
    width: 55%;
}


.contact-message h1 {
    color: #0057e7;
    font-size: 42px;
}


.contact-message h2 {
    color: #0057e7;
    font-size: 30px;
}


.contact-message h3 {
    font-size: 24px;
}


.contact-message p {
    font-size: 20px;
    line-height: 1.7;
}


.cole {
    font-style: italic;
}


.contact-photo {
    width: 35%;
}


.contact-photo img {
    width: 100%;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.25);
}


/* CONNECT SECTION */

.connect {
    text-align: center;
    padding: 40px 80px;
}


.connect h2 {
    color: #0057e7;
    font-size: 32px;
}


.contact-bottom {
    display: flex;
    justify-content: space-around;
    text-align: left;
    padding: 30px 150px 70px;
}


.contact-bottom h3 {
    color: #222222;
    font-size: 28px;
}


.contact-bottom a,
.contact-bottom p {
    color: #0057e7;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.5;
}


/* FOOTER */

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 50px;
}


.footer-left {
    text-align: left;
}


.footer-left h3 {
    color: #0057e7;
}


.footer-right {
    text-align: right;
}


.footer-right nav a {
    color: #0057e7;
    text-decoration: none;
    margin-left: 20px;
}