* /* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f1ed;
    color: #6f8c7b;
}

/* WRAPPER */
#wrapper {
    width: 100%;
}

/* HEADER */
header {
    background-color: #b79b84;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAME */
header h1 {
    font-size: 48px;
    color: var(--Cool-Green-Web, #748A80);
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;;
}

/* NAV */
nav a {
    text-decoration: none;
    color: #f5f5f5;
    margin-left: 25px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #2e2e2e;
}

/* MAIN LAYOUT */
main {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
}

/* LEFT SIDE */
section {
    width: 55%;
}

/* PAGE TITLE */
section h1 {
  font-size: 60px;
    margin-bottom: 30px;
    color: #748A80;
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;
}

/* TEXT */
section p {
    font-size: 22px;
    line-height: 1.6;
    font-weight: bold;
}

/* LINKS SECTION */
.links-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* TITLE */
.links-title {
    font-size: 45px;
    color: #7f9c8c;
    text-shadow: 2px 2px black;
    margin-bottom: 60px;
}

/* GRID LAYOUT */
.links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 80px 120px; /* vertical | horizontal spacing */
    justify-items: center;
}

/* LINK BOXES */
.link-box {
    display: inline-block;
    background: linear-gradient(to right, #9eb59c, #7f9c87);
    color: black;
    font-weight: bold;
    font-size: 22px;
    padding: 15px 30px;
    text-decoration: underline;
    text-align: center;
    width: 100%;
    min-width: 400px;
}

/* HOVER EFFECT */
.link-box:hover {
    background: linear-gradient(to right, #6f8c7d, #9fb39a);
    cursor: pointer;
}