* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body {
    background-image: url(img/galaxy.jpg);
    background-size: cover;
}

h1 {
    color: snow;
}

p {
    color: sandybrown;
}

.container {
    display: flex;
    flex: 1;
    min-height: 100vh;
    align-items: center;
    justify-content: space-around;
}

.box {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border: 5px solid rgb(80, 72, 187);
    border-radius: 10px;
    background-color: rgba(80, 72, 187, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .07s ease;
}

.box:active {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border: 8px solid rgb(83, 238, 11);
    border-radius: 10px;
    background-color: rgba(13, 70, 7, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-active {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    border: 8px solid rgb(83, 238, 11);
    border-radius: 10px;
    background-color: rgba(13, 70, 7, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}