* {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue';
}

html,
body {
    overflow: hidden;
    background-color: black;
}

svg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    position: relative;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    background-color:  #E6E7EB;
    display: grid;
    grid-template-columns: repeat(10,10%);
    grid-template-rows: repeat(10,10%);
    max-height: 100vh;
    margin: 10px;
    border-radius: 5px;
}

#mainTitle {
    grid-row: 4;
    grid-column: 2/11;
}

.title {
    font-size: 100px;
    font-weight: bold;
}

#startButton {
    grid-row: 9;
    grid-column: 8/10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100%;
    border-radius: 20px;
    font-size: 30px;
    text-decoration: none;
    color: white;
    font-weight: bolder;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, black 50%, white 50%);
    transition: background-position 0.5s ease;
}

#startButton:hover {
    cursor: pointer;
    /* border-radius: 50%; */
    /* background-color: white; */
    color: black;
    border-style: solid;
    border-color: black;
    border-width: 4px;
    background-position: 100% 0;
    /* margin-left: 20px;
    margin-right: 20px; */
}




