body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
}

.container {
    width: 80%;
    justify-content: left;
}

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cell {
    display: flex;
    align-items: center;
    margin-bottom: 3em;
}

.cell img {
    width: 128px;
    height: 128px;
    margin-right: 25px;
}

.container a{
    text-decoration: none;
    color: white;
}

.content {
    text-align: left;
    width: 80%;
}

.content h2 {
    margin: 0;
    font-size: 2.5rem;
}

.content p {
    margin: 0;
    font-size: 1.5rem;
}

.bottom-div {
    margin-top: auto; /* Align div to the bottom */
    padding: 20px; /* Added padding to top and bottom */
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

@media (max-width:1200px) {
    .content h2{
        font-size: 1.5rem;
    }
    .content p {
        margin: 0;
        font-size: 1rem;
    }
}

@media (max-width:600px) {
    .cell img {
        width: 64px;
        height: 64px;
        margin-right: 10px;
    }
}