/* Google font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*#region defaults */
* {
    user-select: none;
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
    font-size: clamp(8px, 4vmin, 16px);
    font-family: "DM Sans", sans-serif;    
    color: var(--black-color);
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    display: none;
}

html {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: var(--white-color);
}

body {
    display: flex;    
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    width: 50%;   
    background-color: var(--white-color);
}

@media (orientation: portrait) {
    html {
        background-color: unset;
    }
    
    body {
        width: 100%;
    }            
}

main {
    display: flex;
    overflow: hidden;
    padding: 2rem;
    height: 100%;
    width: 100%;  
    overflow-y: auto;
}
/* #endregion */

/* #region text */
a {
    cursor: pointer;
    text-decoration: none;
}

.bold {
    font-weight: bold;
}
/*#endregion*/