@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h2 {
    font-size: 2em;
}

a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

#intro {
    position: relative;
    height: 50vh;
    margin-bottom: 40px;
}

#gradient {
    position: absolute;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6));
    z-index: 10;
}

.background-img {
    position: absolute;
    width: 100%;
    height: 50vh;
    z-index: 5;
}

#intro-text {
    position: absolute;
    padding: 5% 10%;
    text-align: center;
    color: white;
    z-index: 15;;
}

#intro-text h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

#intro-text p {
    margin-bottom: 50px;
}

#intro-text a {
    text-decoration: none;
    background-color: white;
    color: #333;
    padding: 8px 12px;
    border-radius: 5px;
}

#resources {
    margin-bottom: 40px;
    padding: 0 10%;
}

#resources h2 {
    text-align: center;
    margin-bottom: 3%;
}

.resource {
    display: flex;
    align-items: center;
    margin-bottom: 5%;
}

.imageBox {
    width: 40vw;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.insideContent {
    padding: 5%;
}

.insideContent img {
    border-radius: 5px;
    margin-bottom: 3%;
    width: 100%;
}

.resource h3 a {
    display: flex;
    align-items: center;
}

.resource-logo {
    max-width: 7%;
    margin-right: 3%;
}

.resource p {
    margin-left: 5%;
    width: 55%;
}

#analysis {
    margin-bottom: 5%;
    padding: 5%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#analysis h2 {
    text-align: center;
    margin-bottom: 20px;
}

#example-analysis {
    padding: 5% 10%;
    background-color: white;
}

#example-analysis h2 {
    text-align: center;
    margin-bottom: 1%;
}

#example-analysis .textContent {
    width: 30vw;
}

#example-analysis p1 {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 5%;
}

#example-analysis ol {
    margin-top: 5%;
}

#example-analysis li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5%;
}

#example-analysis li:nth-child(odd) {
    text-align: left;
    flex-direction: row;
}

#example-analysis li:nth-child(even) {
    text-align: right;
    flex-direction: row-reverse;
}

