body {
    margin: 0;
    padding: 0;
    background-color: #dcdacf;
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Ensure the body takes at least the full viewport height */
}

.container {
    height: 95vh;
    width: 95%;
    background-color: #efeddd;
    border: none;
    border-radius: 15px;
    box-shadow: 5px 5px 5px -1px rgba(0, 0, 0, 0.06), -5px -5px 5px -1px rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    z-index: 999;
    overflow: hidden;
}

.square
{
    height: 10rem;
    width: 10rem;
    padding: 5px;
    background-color: transparent;
    border: 5px solid;
    border-radius: 10px;
    border-color: black;
}

.triangle 
{
    height: 0;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid black;
    transform-origin: center;
}
  
.circle {
    border-radius: 50%;
}

@media (min-width: 768px) {

    .container{
        width: 25rem;
        flex-wrap: wrap;
    }
}
  