body, html{
    width: 100%;
    margin: 0; padding:0;
    font-family: "Montserrat", sans-serif;
    color: #FFF;
    background-color: #000;
}

.container{
    width: 80%;
    margin: 0 auto;
}
.little_container{
    margin: 0 auto;
    width: 60%;
}
.primary-button{
    padding: 10px 20px;
    font-size: 1.5em;
    font-style: 500;
    border-radius: 10px;
    border: none;
    background-color: #5D17EB;
    color: #FFF;
    font-family: 'Montserrat', sans-serif; 
    animation: pulse 1s infinite ease-in-out;
}
@keyframes pulse {
    0% {
        outline: 2px solid rgba(93, 23, 235, 0);
    }
    40% {
        outline: 4px solid rgba(93, 23, 235, 0.4);
    }
    70% {
        outline: 8px solid rgba(93, 23, 235, 0.6);
    }
    100% {
        outline: 10px solid rgba(93, 23, 235, 0);
    }
}




.header_description{
    font-size: 1.2em;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bender{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-top:20px;
}
.bender-img{
    width: 150px;
}
.header__div{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.header__menu{
    padding-bottom: 10px;
}
.fuckingafter{
    width: 100%;
}
.fuckingafter::after {
    content: '';
    background-color: #5D17EB;
    width: 0%;  
    height: 8px;
    display: block;
    opacity: 0;  
    animation: lineAppear 1.5s forwards;
}
@keyframes lineAppear {
    0% {
        width: 0%; 
        opacity: 0; 
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}
.header__list{
    list-style-type: none;
    text-transform: none;
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 20px;
}
.header__list a{
    text-decoration: none;
}
.header__list_item{
    color: #5D17EB;
    font-size:1.2em ;
    text-transform: uppercase;
    transition: 1s;
}
.header__list_item::after{
    content: '';
    background-color: #5D17EB;
    width: 0%;
    height: 2px;
    display: block;
    transition: 0.5s;
}
.header__list_item:hover::after{
    width: 100%;
    transition: 0.5s;
}
.main__div{
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main__div_div{
    width: 300px;
    height: 400px;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_div_div_main{
    width: 300px;
    height: 450px;
    border-radius: 10px;
    background-color: #c2c2c2;
    transition: 0.5s;
    text-align: center;
    background-image: url(/Images/MDP5225web-qwmu33emuqof717g4rcmi91h7ab3pmz4q6zmj3ejag.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main_div_div_main:hover{
    width: 250px;
    height: 400px;
}


/* Card */
.main_card{
    background-image: url(/image/banner1.png);
}
.second_card{
    background-image: url(/image/banner2.png);
}
.third_card{
    background-image: url(/image/banner3.png);
}



.main_div_div2{
    width: 250px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #000;
    background-color: #c2c2c2;
    transition: 0.5s;
    text-align: center;
    opacity: 0.5;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main_div_div2:hover{
    width: 225px;
    height: 380px;
    opacity: 1;
}
.button_position{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 50px;
}