/* Colors */
:root {
    --d-blue: #54b8b2;
    --d-green: #b0d131;
    --d-orange: #f3783b;
    --d-dark-blue: #2595ae;
    --d-light-blue: #c7e7e6;
}

* {
    margin: 0;
}

body {
    background-color: black;
    color: var(--d-blue);
    font-family: monospace;
    text-align: center;
    width: 100vw;
    height: 100vh;
}
#start {
    cursor: pointer;
    font-size: 300%;
    font-weight: bold;
    padding-top: 30px;
}
#container {
    cursor: none;
    font-size: 500%;
    padding: 3%;
    margin: 0 auto;
    width: fit-content;
    background-color: hsl(191, 65%, 15%);
    border: var(--d-blue) solid 2px;
    border-radius: 16px;
    transition: background-color .5s ease, border .5s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#container:hover {
    background-color: transparent;
    border: transparent solid 2px;
}