@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2 Medium', sans-serif;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;

    max-width: 700px;
}

.square{
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: rgb(173,147,238);
    margin: 2px;
    box-shadow: 0 0 2px black;
    transition: 0.6s ease;

}

.square:hover{
    transition-duration: 0s;
}
.last-row {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 600px;
    justify-content: center;
    margin-bottom: 3%;
}
.col-header {
    width: 150px;
    box-shadow: 4px 4px 9px rgba(198, 198, 198, 0.36);
    border-radius: 20px;
    padding: 0.8rem 1rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.start {
    background: linear-gradient(90deg, #ff85e4 0%, #229efd 179.25%);
}

A {
    color: #c7c7c7;
    text-decoration: none;
}
A:hover {
    color: #c7c7c7;
    text-decoration: underline;
}
A:visited {
    color: rgb(160, 243, 232);
    text-decoration: none;
}
A:active {
    color: darkgray;
    text-decoration: none;
}