.projects-container {
    display: flex;
    gap: 20px;
}

.pro-card {
    background-color: #1e1e1e;
    color: white;
    padding: 15px;
    border-radius: 10px;
    width: 150px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    position: relative;
}

.pro-card img {
    width: 20px;
}

.attribute-text {
    font-size: 12px;
    color:white;
}

.pro-attribute-subhead {
    font-size: 16px;
    font-weight: bold;
}

.visit-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.visit-text:hover {
    color: white;
}