.shape-container {

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: red;
    background-repeat: no-repeat;
    background-size: cover;

}

.shape-top {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./giphy1.gif");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    clip-path: polygon(0 0, 100% 0, 50% 50%, 0 0%);

}

.shape-left {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./giphy1.gif");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    clip-path: polygon(0 0, 50% 50%, 0% 100%, 0 0%);

}

.shape-bot {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./giphy1.gif");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    clip-path: polygon(0 100%, 50% 50%, 100% 100%, 0 100%);

}

.shape-right {

    position: fixed;
    top: 0;
    left: 20%;
    width: 100%;
    height: 100%;
    background-image: url("./giphy1.gif");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    clip-path: polygon(100% 0, 50% 50%, 100% 100%, 100% 0%);

}

