@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main {
    height:100%;
    width: 86%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 15px;
    padding: 40px;
    border-radius: 20px;
}

.card-container {
    height: 86%;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.card {
    box-shadow: rgba(99, 99, 99, 0.8) 0px 2px 8px 0px;
    position: relative;
    padding: 20px;
    border-radius: 0px;
    height: 186px;
    margin: 3px;

}

.action-button {
    position: absolute;
    top: 15px;
    right: 15px;
}

.action-button img {
    width: 15px;
}
