
/* Home Page Styles */
.home-page {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: url("../public/main-background/background.jpg") no-repeat center center/cover;
    color: white;
}

.link-section {
    display: grid;
    grid-template-columns: 75px 75px;
    gap: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
    width: 80px;
    height: 80px;
}

.icons {
    height: 88px;
    width: 88px;
    flex-direction: column;
    gap: 5px;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
}

.icons img {
    height: 45px;
    width: 45px;
}

.icons:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.links p {
    font-size: 1rem;
    font-weight: 500;
}
