* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Desktop fixed width */
body {
    width: 1200px;
    margin: 0 auto;
}

/* HEADER / HERO */
.header {
    width: 1200px;
    height: 600px;
    background-image:
        linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),
        url(./air-fryer-guide.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* HERO TEXT */
.text-box {
    width: 900px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
}

.text-box p {
    margin: 20px 100px;
    font-size: 24px;
}

/* MENU SECTION */
.menu {
    width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.menu p {
    font-size: 16px;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    margin-bottom: 25px;
    text-align: left;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* IMAGE GRID */
.images {
    width: 1000px;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}

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

/* IMAGE CARD */
.images-col {
    width: 300px;
    border-radius: 10px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.images-col img {
    width: 100%;
    display: block;
}

/* IMAGE OVERLAY */
.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover {
    background: rgba(226, 0, 0, 0.7);
}

.layer h3 {
    width: 90%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3 {
    bottom: 49%;
    opacity: 1;
}
