body {
    background-color: #1a202c;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.grid-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin-bottom: 150px;
    margin-top: 100px;
}

.top-text h1 {
    font-size: 60px;
    margin: 0;
}

.top-text p {
    margin: 10px 0 0;
    text-align: center;
    color: #a0aec0;
}

.image-container img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
}

.grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
}

.list {
    background-color: #2d3748;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    text-align: start;

}

.list:hover {
    transform: rotate(3deg);
    cursor: pointer;
}

.list img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.list h2 {
    font-size: 18px;
    margin: 0;
}

.list p {
    font-size: 14px;
    margin: 10px 0 0;
    color: #cbd5e0;
}

.flex {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}


@media (max-width: 1250px) {

    .grid-bottom  {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 930px) {
    .grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .grid-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 75px;
    }

    .grid-bottom {
        grid-template-columns: 1fr;
    }

    .image-container img {
        width: 250px;
        height: 250px;
    }
}
