body {
    margin: 0;
}
.main {
    background-color: rgb(211, 226, 0);
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.blur {
    filter: blur(1.5px);
}
.btnCollection {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.btnCollection button {
    margin-top: 20px;
    width: 150px;
    height: 30px;
    background-color: lightblue;
    border: none;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgb(129, 129, 129);
    cursor: pointer;
    transition: all 0.3s;
}
.btnCollection button:hover {
    transform: translate(2px, 2px) scale(1.06);
}

.modal {
    background-color: lightgreen;
    position: absolute;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 5px 5px 5px rgb(68, 68, 68);
}
.modalScale {
    background-color: red;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
}
.modalScaleAnim{
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}
.modalOpacity {
    top: 50%; 
    background-color: green;
    opacity: 0;
}
.modalOpacityAnim{
    opacity: 1;
}


.modalMovDown {
    top: 50%;
}

.cover {
    background-color: red;
    opacity: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    position: absolute;
    display: none;
}
.cover-visable {
    display: block;
}
