:root, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Montserrat', Open-sans, sans-serif;
}

body {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: rgb(255,220,98);
    background: linear-gradient(135deg, rgba(255,220,98,1) 0%, rgba(246,153,188,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1025px) {
    .container {
        width: 1024px;
        height: 600px;
    }
    .title {
        font-size: 4em;
        margin-bottom: 32px;
    }
    .button button {
        padding: 9px 16px;
        font-size: 1em;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 768px;
        height: 450px;
    }
    .title {
        font-size: 3.5em;
        margin-bottom: 24px;
    }
    .icon {
        width: 50px;
        height: 50px;
    }
    .button button {
        padding: 9px 16px;
        font-size: 1em;
    }
}

@media screen and (min-width: 501px) and (max-width: 768px) {
    .container {
        width: 500px;
        height: 350px;
    }
    .icon {
        width: 35px;
        height: 35px;
    }
    .title {
        font-size: 3em;
        margin-bottom: 16px;
    }
    .button button {
        font-size: 1em;
        padding: 4px 8px;
    }
}

@media screen and (max-width: 500px) {
    .container {
        width: 320px;
        height: 250px;
    }
    .icon {
        width: 30px;
        height: 30px;
    }
    .title {
        font-size: 2em;
        margin-bottom: 12px;
    }
    .button button {
        font-size: 0.75em;
        padding: 4px 8px;
    }
}

.container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(45deg, #F206A4 18.6%, #F20660 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F206A4;
    display: table;
}

.button button {
    background: #F206A4;
    background: linear-gradient(92.11deg, #F206A4 18.6%, #F20660 100%);
    border-radius: 32px;
    color: white;
    cursor: pointer;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.button button:hover {
    transform: scale(1.1);
}

.icon {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
}

.icon-1 {
    left: 26%;
    top: 10%;
}

.icon-2 {
    left: 50%;
    top: 20%;
}

.icon-3 {
    left: 74%;
    top: 10%;
}

.icon-4 {
    left: 85%;
    top: 40%;
}

.icon-5 {
    left: 74%;
    top: 75%;
}

.icon-6 {
    left: 50%;
    top: 90%;
}

.icon-7 {
    left: 26%;
    top: 75%;
}

.icon-8 {
    left: 15%;
    top: 40%;
}

@keyframes rotate-scale {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotateZ(180deg) scale(1.3);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg) scale(1);
    }
}

@keyframes rotate-scale-back {
    0% {
        transform: translate(-50%, -50%) rotateZ(360deg) scale(1.3);
    }

    50% {
        transform: translate(-50%, -50%) rotateZ(180deg) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(0deg) scale(1.3);
    }
}

.rotate-scale {
    animation: rotate-scale 2s linear infinite;
}

.rotate-scale-back {
    animation: rotate-scale-back 2s linear infinite;
}
