* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400
}

html,
body {
    height: 100%;
    width: 100%;
   font-family: 'Montserrat', sans-serif;
}
main{
    width: 100%;
    height: 100%;
    background: #f8f8f8;
}

.container{
    padding: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.16));
}

.left{
    width: 61%;
    height: 100%;
    background-color: #FFCB05;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 4%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.leftImg img{
    width: 160px;
}

.left .leftText{
    margin-bottom: 6%;
}

.left .leftText h6{
   letter-spacing: 5.5px;
   font-size: 16px;
   font-weight: 200;
   margin-bottom: 20px;
   font-weight: 700;
}
.left .leftText h1 {
    font-size: 125px;
    font-weight: 700;
}

.left .leftText p{
    line-height: 1.5;
    font-size: 15px;
}

.left .leftText h5{
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
}

.left .leftText h5 span::before {
    content: "\2014  ";
    margin-right: 10px;
    font-size: 30px; 
}

.right{
    background-color: #FEF5D4;
    width: 39%;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
}


.pokeball-bg img{
    position: absolute;
    bottom: 1.5%;
    width: 15%;
}

.pikachu-img{
    position: absolute;
    z-index: 2;
    left: 48%;
    top: 16%;
    height: 72%;
    max-width: 55%;
    
}

.hamburger{
    position: absolute;
    top: 50px;
    right: 38px;
    width: 42px;
    height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.hamburger span{
    display: block;
    width: 100%;
    height: 4px;
    background: #000;
    border-radius: 10px;
}

.slider-dots{
    position: absolute;
    right: 40px;
    top: 46%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.slider-dots span{
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #FFCB05;
}

.slider-dots .active{
    background: #000;
}

