*{
    padding: 0;
    margin:0 ;
    box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;

}
.colum{
    flex: 1;
    background: darkgray;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.colum h2{
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    transition: background 0.4s;
}
.colum h2:hover{
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}
.colum button{
    outline: none;
    padding: 10px;
    border-radius: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    transition: background 0.4s;
}
.colum button:hover{
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}
 .material-symbols-outlined {
     font-variation-settings:
             'FILL' 20,
             'wght' 400,
             'GRAD' 0,
             'opsz' 55

 }

