
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container{
    min-width: 100%;
    min-height: 100%;
}
.background{
    background-image: url('./image/cats-9317796_1280.jpg');
    background-size: 100% 100%;
    width: 80%;
    height: 500px;
    position: relative;
    margin: 20px;
    border: 1px solid black;
    border-radius: 10px;
    align-items: center;
}
.content{
    position: absolute;
    bottom: 100px;
    left: 100px;
    /* border: 1px solid white; */
    background-color: transparent;
    z-index: 1;
    color: white;
    padding: 20px;
}
.front-image{
    background-image: url('./image/fifth-pic.webp');
    background-size: cover;
    height: 200px;
    width: 300px;
    position: absolute;
    bottom: 100px;
    left: 100px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
}
.right-content{
    position: absolute;
    top: 30px;
    right: 100px;
    width: 100px;
    color: white;
} 

