body{
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.program{
    font-size: 20px;
}

.h1{
    font-size: 45px;
    color: white;
}
.box{
    width: 350px;
    height: 450px;
    margin: 50px auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3); /* białe, półprzezroczyste */
    backdrop-filter: blur(10px); /* efekt rozmycia */
    -webkit-backdrop-filter: blur(10px); /* wsparcie dla Safari */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 20px;
    text-align: center;
}

