* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    height: calc(100vh - 30px);
    margin: 15px;
    align-items: flex-end;
    background-color: black;
    overflow: hidden;
    background-image: url("images/background.jpg");
    background-size: cover;
}

#gifts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#gifts>div {
    position: relative;
    border-radius: 20px;
    padding: 4px;
    width: 128px;
    height: 128px;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.1);
}

#gifts img {
    position: absolute;
    max-width: 120px;
    max-height: 70px;
    z-index: 2;
}

#gifts img:nth-child(2) {
    bottom: 4px;
    right: 4px;
    max-width: 120px;
    max-height: 90px;
    z-index: 1;
}