*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Courier New', Courier, monospace;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: rgb(202, 213, 235);
    height: 100vh;
    /* flex-direction: column; */
}
h1{
    text-align: center;
    font-size: 20px;
}
.container{
    width: 450px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    background-color: whitesmoke;
    border-radius: 10px;
    box-shadow: 0px 0px 60px 5px rgba(88,88,87,1);
}
#bgColor{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(146, 33, 33);
}
#shape{
    width: 100px;
    height: 100px;
    background-color: white;
}
#round{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
}
#diamond{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
#triangle{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
#arrow{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
}
#frame{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(0% 0%, 0% 100%, 25% 100%, 25% 25%, 75% 25%, 75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%); 
}
#star{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
#cross{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
#left-point{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
}
#right-point{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
#parallal{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
#cheg{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}
#xyz{
    width: 100px;
    height: 100px;
    background-color: white;
    clip-path: xywh(0 5px 100% 75% round 15% 0);
}
#abc{
    width: 100px;
    height: 100px;
    background-color: white; 
    clip-path: path('M 0 200 L 0,75 A 5,5 0,0,1 150,75 L 200 200 z');
}
.btn button{
    
    display: inline-block;
    justify-content: space-around;
    /* flex-wrap: wrap; */
    height: 50px;
    width: 150px;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 10px;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    background: linear-gradient(45deg, #c93d9f, #4a7517); ;
    font-size: 16px;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}
.btn button:hover{
    transform: scale(1.05);
}

@media(max-width:480px){
    h1{
        font-size: 16px;
    }
    .container{
        width: 450px;
        height: 450px;
        margin: 20px;
    }
    .btn button{
        height: 40px;
        width: 100px; 
        font-size: 12px;
        padding: 5px;
    }
}
