@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
    --color1: #636971;
    --color2: #353C47;
    --color3: #6E809C;
    --color4: #1E2633;
    --color5: #162133;
    --color6: #0D1C33;
}

main {
    padding: 30px;
    flex-direction: column;
    background-color: #fff;
    flex: 1 1 500px;
    min-height: calc(100vh - 224px);
}

main img {
    width: 45%;
    height: 80%;
}

main span {
    padding: 1px 1px;
    background-color: lightgray;
    font-weight: bold;
    border-radius: 3px;
}

#mobile-img {
    display: none;
}

#metronome {
    padding: 10px 0 10px 0;
    text-align: center;
    width: 100%;
    color: white;
}

#metronome-btn {
    color: white;
    font-weight: 450;
    text-align: center;
    background-color: var(--color3);
    padding: 10px;
    margin: 5px;
    border: solid var(--color6) 2px;
    border-radius: 8px;
    width: 50%;
    height: 40%;
    cursor: pointer;
}

@media only screen and (max-width: 1060px) {
    hr {
        display: none;
    }

    #metronome {
        display: none;
    }
}