.app-title{
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.app-subtitle{
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 20px;
}

.app-menu{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1em;
    gap: 1.5em;
}

.app-item{
    display: block;
    text-align: center;          
    gap: 1em;    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1em 2em;
    width: 300px;        
    text-decoration: none;    
    font-size: 1.2rem;
    transition: color 0.3s ease;
    border-radius: 5px;      
    color: #2c3e50;
    background-color: #ecf0f1;
    text-transform: capitalize;
}

.app-item:hover{
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    background-color: #2c3e50;
    color: #ecf0f1;
    cursor: pointer;
}