@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Stick&display=swap');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');

html, body {
    overflow: hidden;
}

body {
    background-color: #a0afa0;
    font-family: "Stick", serif;
}

.top {
    display: flex;
    height:16vh;
}

.title {
    font-size: 3vh;
    text-align: center;
    margin: 0 auto;
}

.title a{
    text-decoration: none;
    color: black;
}

.title span {
    font-size: 7vh;
}

.startHalf {
    background-color: #f6edd9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    font-size: 7vh;
    width: 60vw;
    margin: 0 auto;
    @media (max-width: 768px) {
        width: 100%;
    }
}

.upperHalf, .middleHalf, .lowerHalf, .lastHalf {
    background-color: #f6edd9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 19vh;
    font-size: 5vmin;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: bold;
    width: 60vw;
    margin: 0 auto;
    @media (max-width: 768px) {
        width: 100%;
        height: 15vh;
    }
}

.startHalf:hover,.upperHalf:hover,.middleHalf:hover,
.lowerHalf:hover,.lastHalf:hover{
    background-color: #222e22;
    color: #f2f8f2;
    cursor: pointer;
}