@import "fonts.css";
@import "squareAnimations.css";
@import "header.css";

* {
    box-sizing: border-box;
}

body {
    background: url("../images/square.jpg") no-repeat center center/cover;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 300px;
    margin: auto;
    position: relative;
}

.gradient-square {
    background: conic-gradient(
        #fff 0%,
        #fff 12.5%,
        #e63232 12.5%,
        #c92c2c 37.5%,
        #fff 37.5%,
        #fff 62.5%,
        #992222 62.5%,
        #8f1f1f 87.5%,
        #fff 87.5%,
        #fff 100%
    );
    height: 320px;
    width: 320px;
    z-index: -2;
    position: absolute;
}

.square {
    background-color: #010f1c;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.pointer-container {
    position: absolute;
    top: -40px;
    left: 140px;
    width: 20px;
    height: 20px;
}

.pointer {
    background-color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: block;
}

@media screen and (max-width: 500px) {
    .container {
        height: 240px;
        width: 240px;
    }

    .gradient-square {
        height: 260px;
        width: 260px;
    }

    .pointer-container {
        left: 110px;
        width: 17px;
        height: 160px;
    }

    .pointer {
        width: 17px;
        height: 17px;
    }
}