body{
    background-color: #0F3040;
    color: #FFFFFF;
}

.item{
    font-size: 24px;
    background-color: #464858;
    width: 80%;
    height: 100px;
    min-height: 100px;
    padding: 10px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 10px 10px 10px #353640;
    transition: 0.1s;

    display: flex;
    flex-direction: row;
    gap: 10px;
}

img{
    width: 100px;
    height: 100px;
}

.item:hover{
    background-color: #747585;
    scale: 1.05;
    transition: 0.1s;
}

.main{
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90vh;
}

button{
    border: none;
    outline: none;
    padding: 10px;
    width: 100%;
}