body {
    background-color: #344e41;
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
}

.page-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 60px;
    background-color: #252519;
    color: #f0ece3;
    border-radius: 0 0 20px 20px;
    font-family: 'verdana', sans-serif;
    font-size: 15px;
}

.links {
    display: flex;
    gap: 20px;
}

.links a {
    text-decoration: none;
    color: #c9b99a;
}

.links a:hover {
    text-decoration: underline;
    color: #a3b18a;
}

.container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin-top: 20px;
}

.item {
    width: 45%;
    height: 280px;
    background-color: #3a5a40;
    border: 1px solid rgba(154, 171, 130, 0.1);
    font-size: 24px;
    color: #f0ece3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    padding: 20px;
}

.item:hover {
    background-color: #2c2c20;
    transform: scale(1.05);
    border-color: rgba(154, 171, 130, 0.4);
}

.item .info {
    opacity: 0;
    transform: translateY(7px);
    transition: all 0.3s ease;
    color: #c9b99a;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

.item:hover .info {
    opacity: 1;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 60px;
    background-color: #252519;
    color: #888878;
    font-family: 'verdana' sans-serif;
    font-size: 13px;
    margin-top: 40px;
}

.mainheading {
    text-align: center;
    transform: translateY(100%, 100%);
    color: #f0ece3;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

.gitlink a {
    color: #c9b99a;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

.links {
    display: flex;
    gap: 20px;
}

.gitlink a {
    text-decoration: none;
    color: #c9b99a;
}