body{
    font-family: sans-serif;
    margin: 0;
    background-color: #534387;
    text-transform: capitalize;
}
html {scrollbar-color: #000000 transparent;scrollbar-width: auto}
header h1{
    font-size: 3rem;
}
header{
    text-align: center;
}
.imgimg{
    border-radius: 20px;
    box-shadow: 0 0 25px white;
}
main div img{
filter: drop-shadow(0 0 20px white);
}
.img{text-align: center}
.open,
.powerful,
.server,
.up{
    width: 300px;
    padding: 25px;
    margin: 20px;
    border: 3px solid rgba(0 ,0,0,0.4);
    background-color: rgba(0,0,0,0.4);
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s ease;
}
.open:hover,
.powerful:hover,
.server:hover,
.up:hover{
    transform: scale(1.05);
}
.text{text-align: center}
.why{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.features{
text-align: center;
    font-weight: bolder;
}

.what{
    text-align: center;

    padding: 25px;
    margin: 20px;



    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s ease;
}
.why2{
    text-align: center;

    padding: 25px;
    margin: 20px;



    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.what:hover{transform: scale(1.005)}
.code{border: 2.5px solid black;
border-radius: 5px;
margin: 0 200px;
    color: white;
    background-color: black;
    text-transform: none;
}
.try{
    text-align: center;
    padding: 25px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
hr{
    width: 90%;
    color: black;
    background-color: black;
}
nav{
    text-align: center;
}
nav a{
    text-decoration: none;
    color: white;
    margin-left: 10px;
    transition: 0.5s ease;
}
nav a:hover{
    color: black;
}

img{
    max-width: 100%;
    height: auto;
}


*{
    box-sizing: border-box;
}


@media (max-width:768px){

    body{
        padding: 10px;
    }

    header h1{
        font-size: 2.3rem;
    }

    header h2{
        font-size: 1.4rem;
    }

    header h3{
        font-size: 1rem;
    }

    .open,
    .powerful,
    .server,
    .up{
        width: 100%;
        max-width: 400px;
        margin: 10px 0;
    }

    .what,
    .why2,
    .try{
        margin: 15px 5px;
        padding: 20px;
    }

    .code{
        margin: 0;
        width: 100%;
        overflow-x: auto;
        font-size: 0.9rem;
        padding: 10px;
        word-break: break-all;
    }

    nav{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    nav a{
        margin: 0;
    }

    hr{
        width: 100%;
    }
}


@media (min-width:769px) and (max-width:1024px){

    .open,
    .powerful,
    .server,
    .up{
        width: 45%;
    }

    .code{
        margin: 0 40px;
    }
}