body {
    height: 100vh;
    margin: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../Ressources/upper-image.jpeg');
    background-size: cover;
    text-align: center;
    overflow-y: scroll;
}

h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 2rem;
}

p {
    font-size: 24px;
    color: #666;
    margin-bottom: 2rem;
}

.header {
    display: row;
    justify-content: space-between;
    align-items: center;
    padding: 2% 5%;
}

.cta {
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 1.5rem 3rem;
    display: inline-block;
    margin-bottom: 2rem;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #555;
}

.featured {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

.featured .item {
    text-align: center;
    margin: 2rem;
}

.featured .item img {
    height: 150px;
    margin-bottom: 1rem;
}

.featured .item h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 1rem;
}

.featured .item p {
    font-size: 18px;
    color: #666;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
}

footer a {
    color: white;
    text-decoration: none;
}

.item {
    transform: scale(1.25);
    padding-top: 5%;
}
