* {
    margin: 0;
    padding: 0;
}

:root {
    font-size: 62.5%;
    font-family: Arial, Helvetica, sans-serif;
}

::selection {
 	color: white;
  	background-color: #6c63ff;
}

body {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  	background-color: #0a0a0c;
}

.box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 80rem;
    color: #6c63ff;
    height: 100%;
}

h1 {
    padding-top: 2rem;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 100px;
}

h1::after {
    content: '';
    animation: dots 3s infinite;
}

.image-build {
    display: inline-block;
    width: 100%;
}

.github {
    position: absolute;
    right: 0;;
    margin: 20px;
}

@keyframes dots {
    0% {
        content: '';
    }
    25% {
        content: '.';
    }
    50% {
        content: '..';
    }
    75% {
        content: '...';
    }
    100% {
        content: '';
    }
}