body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e6e5e3;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    text-align: center;
    padding: 60px 20px;
    flex: 1;
}

.welcome-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.welcome-section p {
    color: black;
    margin-bottom: 50px;
}


.portal-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.portal-container a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portal-container a:visited {
    color: inherit;
}

.portal-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 20px;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.portal-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #eef2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-card h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.portal-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .welcome-section h1 {
        font-size: 1.5rem;
    }

    .portal-card {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 300px) {

    .portal-card {
        width: 175px;
    }

    .portal-card p {
        display: none;
    }
}