@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300&display=swap');

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url("bg.jpg");
    background-size: cover;
    background-attachment: fixed;
}
.container {
    position: relative;
    width: 400px;
    height: 400px;
}
.wrapper h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 90px;
    color: white;
    text-transform: capitalize;
    -webkit-text-stroke: 1px #1e6b7b;
    line-height: 1em;
    font-size: 2.5em;
    font-weight: 800;
    transform: 0.25s;
}
.wrapper h1:hover{
    transform: scale(1.3);
    color: rgba(255, 255, 255, 0.2);
    -webkit-text-stroke: 1px white;
}
.container .thumb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.container .thumb li {
    list-style: none;
    width: 100px;
    height: 100px;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.container .thumb li img {
    width: 90%;
    transition: 0.5s;
}
.container .thumb li:hover img {
   transform: rotate(-35deg);
}


.container .imgBox {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    padding: 60px 20px;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.container .imgBox h2 {
    color: white;
    letter-spacing: 1;
}
.container .imgBox img {
    width: 80%;
    transition: 0.25s;
}
.container .imgBox img:hover {
    transform: scale(1.5) rotate(-15deg) translateX(20px);
}
.container .imgBox .size {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .imgBox .size span {
    color: white;
    font-size: 1.2em;
    letter-spacing: 1px;
    margin-right: 5px;
}
.container .imgBox .size li {
    list-style: none;
    width: 30px;
    height: 30px;
    color: #1e7b35;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid  rgba(255, 255, 255, 0.40);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 45px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    overflow: hidden;
    cursor: pointer;
    transition: 0.25s;
}
.container .imgBox .size li:hover {
    transform: translateY(-10px);
    color: white;
}
.container .imgBox .size li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: skewX(45deg) translateX(170px);
    transition: 0.5s;
}
.container .imgBox .size li:hover::before {
    transform: skewX(45deg) translateX(-150px);
}
.container .imgBox .btn {
    position: absolute;
    bottom: -30px;
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid  rgba(255, 255, 255, 0.40);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 45px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    overflow: hidden;
    font-weight: 500;
    color: #1e6b7b;
    transition: 0.25s;
} 
.container .imgBox .btn:hover {
    color: white;
}    
.container .imgBox .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: skewX(45deg) translateX(170px);
    transition: 0.5s;
}   
.container .imgBox .btn:hover::before {
    transform: skewX(45deg) translateX(-150px);
} 