body {
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
    background-image:
        linear-gradient(90deg, rgba(77, 77, 77, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(97, 97, 97, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

header {
    padding: 20px;
    text-align: right;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline-block;
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.container {
    max-width: 550px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 5px;
    position: relative;
    top: 200px;
    transform: translateX(-50%);
    width: 80%; /* Adjust the width as needed */
    background-color: rgba(255, 255, 255, 0.1); /* Adjust the opacity value as needed */
    backdrop-filter: blur(1px); /* Adjust the blur amount as needed */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Optional: Add a border for contrast */
}


.tile {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    width: 30%; /* Adjust as needed */
    box-sizing: border-box;
    margin-bottom: 20px;
}

.tile h2 {
    color: #fff;
    font-size: 24px;
}

.tile p {
    color: #ccc;
    line-height: 1.4;
}


.head-logo{
    display: flex;
}

@media (max-width: 768px) {
    .container {
        left: 0;
        transform: translateX(0);
        top: 100px;
        margin-left: 10px;
        margin-right: 10px;
        width: 80%
    }
}

h1 {
    color: white;
    margin: 0;
    font-size: 36px;
}

p {
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #28dd00;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.client-logos img {
    width: 80px; /* Adjust the width as needed */
    height: auto;
}

.logo {
    text-align: left; /* Align the logo to the left */
}

.logo img {
    width: 120px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

footer {
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.copyright {
    font-size: 14px;
}

/* Adjust the style of the link within the copyright */
.copyright a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}



.cohort-title{
    font-size: x-large;
    font-weight: bold;
    margin-bottom: 20px;

}

.cohort-body {
    margin-bottom: 20px;
    color: #dedede;

}

.cohort-ctc {

    background-color: #f6f6f6;
    max-width: 100px;
    width: 100%;
    color: #000000;
    border-radius: 5px;
    padding: 10px;
    
}

.cohort-date {
    margin-bottom: 20px;
    font-weight: bold;
    color: #dedede;
}

.container a{
    color: black;
}