@font-face {
    font-family: 'ArialRounded';
    font-display: swap;
    src: url('../fonts/Arial_Rounded_MT.ttf') format('truetype');
}

@font-face {
    font-family: 'ArialRounded';
    font-display: swap;
    src: url('../fonts/Arial-Rounded-MT-Bold.ttf') format('truetype');
    font-weight: bold;
}

body, html, * {
    font-family: 'ArialRounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #ffffff;
    --theme:  rgb(29, 30, 32);;
    --primary: rgb(218, 218, 219);
    --gap: 24px;
    --content-gap: 20px;
    --nav-width: 1024px;
    --main-width: 720px;
    --header-height: 60px;
    --footer-height: 60px;
    --radius: 8px;
}

/* html, body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

#Pomodoro {
    transition: 1s;
    background-color: var(--theme);
}

#Pomodoro-main {
    max-width: calc(var(--main-width) + var(--gap) * 2);
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#content {
    font-size: 18px;
    line-height: 1.6;
    word-break: break-word;
    background: var(--theme);
}

#main {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    max-width: calc(var(--main-width) + var(--gap) * 2);
    margin: auto;
    padding: var(--gap);
}

article {
    display: block;
}

.post-content {
    color: rgb(196, 196, 197);
}

.post-content h3 {
    font-size: 24px;
    margin: 24px 0 16px;
}

.post-content p {
    margin-bottom: var(--content-gap);
}

header {
    width: 95%;
    height: 60px;
    display: flex;
    max-width: 620px;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between;
    border-bottom: 1px solid #00000025;
}

header h1 {
    font-size: 20px;
    margin-left: 2px;
    font-weight: bolder;
}

.post-title {
    margin-bottom: 2px;
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary);
}

#logo {
    display: flex;
}

#logo img {
    width: 20px;
    height: 20px;
}

header nav ul li {
    display: flex;
    font-size: 10pt;
    padding: 8px 12px;
    border-radius: 4px;
    align-items: center;
    background-color: #ffffff20;
}

header nav ul li span {
    margin-left: 3px;
}

main {
    width: 90%;
    display: flex;
    margin: 0 auto;
    max-width: 480px;
    border-radius: 5px;
    align-items: center;
    padding: 30px 0 30px;
    flex-direction: column;
    background-color: #ffffff15;
}

main nav, main ul {
    width: 100%;
}

ul {
    display: flex;
    justify-content: center;
}

li {
    cursor: pointer;
    padding: 5px 10px;
}

li.active {
    border-radius: 5px;
    font-weight: bolder;
    background-color: #00000025;
}

#timer {
    color: #fff;
    font-size: 90pt;
    margin-top: 20px;
    font-weight: bolder;
}

#controlButton {
    border: 0;
    width: 200px;
    transition: 1s;
    cursor: pointer;
    font-size: 16pt;
    margin-top: 20px;
    color: var(--theme);
    border-radius: 5px;
    font-weight: bolder;
    padding: 15.5px 50px;
    box-shadow: rgb(214, 214, 214) 0px 6px 0px;
}

#controlButton:active {
    top: 2px;
    height: 53px;
    position: relative;
    box-shadow: #efefef 0px 6px 0px;
}