*, 
*:before, 
*:after {
    box-sizing: border-box;
}

html {
    font-size: 20px;
}

body {
    background-color: #7DBC79;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

main {
    width: 100%; 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#tommiObject {
    width: 1000px;
    height: 600px;
    display: flex;
    justify-content: left;
}

#menu {
    text-align: center;
} 

h1 {
    color: black;
    font-size: 30px;   
}

button {
    width: 70px;
    padding: 10px;
    margin: 10px;
    background-color: #da6cfc;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;
}

button:hover {
    cursor: pointer;
    color: #35c4f4;
}

/* Tablet View */
@media (max-width: 768px) {
    html {
        font-size: 18px;
    }

    #tommiObject {
        width: 90%;
        height: 450px;
        justify-content: center;
    }

    button {
        width: 70px;
        padding: 10px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 26px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    html {
        font-size: 16px;
    }

    main {
        flex-direction: column;
        align-items: center;
    }

    #tommiObject {
        width: 95%;
        height: 350px;
        flex-direction: column;
        align-items: center;
    }

    button {
        width: 80%;
        max-width: 200px;
        font-size: 0.85rem;
        padding: 8px;
        margin: 8px auto;
    }

    h1 {
        font-size: 22px;
    }
}
