﻿/*Dark mod*/
body.dark
.boX {
    background-color: #2424248c;
    box-shadow: none;
}
/*Dark mod*/

.padarbox{
    width:100%;
    padding:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:10px;
}

.padarbox h1{
    font-size:3.5rem;
}

.BoX {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap:40px;
    flex-wrap: wrap;
}

.boX {
    display: flex;
    width: 400px;
    flex-direction: column;
    background-color: #dfdfdf;
    padding:20px;
    border-radius:10px;
    gap:10px;
    transition: all 0.5s;
}

.boX h2{
    font-size:1.8rem;
}

.boX:hover {
    transform:scale(1.05);
    box-shadow: 5px 5px 40px rgba(119, 119, 119, 0.301);
}

.boX img {
    width: 100%;
    border-radius: 10px;
}

.boxzbaab{
    display:flex;
    gap:10px;
}

.BOX{
    background-color: #1aff003b;
    padding:5px;
    border-radius:10px;
}

.Btn {
    font-family: inherit;
    border: none;
    padding: 10px;
    border-radius: 10px;
    background-color: #003cff;
    color: var(--white);
    cursor: pointer;
    transition: all 0.5s;
    width: 100%;
}

    .Btn:hover {
        background-color: #002cbd;
    }
