html{
    text-align: center;
}
.notifications{
    margin-top: 45px;
    padding: 10px;
    border: 5px solid black;
    border-radius: 10px;
}
.container, .download{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 15px;
    margin: 0px;
    justify-content: center;
}
.download {
    border: 3px solid black;
    border-radius: 10px;
    width: max-content;
}
.app{
    width: 40%;
    height: auto;
    background-color: lightblue;
    border: hidden;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: 0px;
    transition: 1s;
    scale: 1;
}
.app:hover, .software:hover{
    scale: 1.05;
}
.software{
    width: max-content;
    height: auto;
    background-color: gray;
    border: hidden;
    border-radius: 10px;
    padding: 15px 35px 15px 35px;
    text-align: center;
    margin: 0px; 
    transition: 1s;
    scale: 1;


}
.small{
    width: 100px;
    height: auto;
}
button{
    width: 100px;
    height: 40px;
    background-color: black;
    color: white;
    border: hidden;
}
button:hover{
    background-color: white;
    color: black;
    border: 1px solid black;
}