/*
 Основные стили
 17.06.2025
*/
:root {
}


html {
    height: 100%;
    box-sizing: border-box;
}

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

body {
    min-height: 100%; /* Занять всю высоту */
    max-height: 100%; /* И не больше */
    margin: 0 auto;
    width: 100%;
    background: var(--color-background);
    color: var(--color-white-text);
}

main {
    width: 100%;
    height: 100vh;
    padding: 10px;
}

#cat_block {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#the_cat {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 10px 3px var(--color-cat-shadow);
}

#info_block {
    position: fixed;
    z-index: 1;
    bottom: 10px;
    right: 10px;
    background: var(--color-info-bg);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 3px 1px var(--color-info-shadow) inset;
}

#title {
    font: var(--font-title);
    padding-bottom: 3px;
    border-bottom: 1px dotted var(--color-info-shadow);
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#logo_small {
    width: 32px;
    height: auto;
    transition: transform 0.2s;
}

#logo_small:hover {
    padding: 2px;
    transform: scale(5);
    box-shadow: 0 0 1px 1px var(--color-info-shadow) inset;
    border-radius: 50%;
    background: var(--color-logo-bg);
    cursor: pointer;
}


#copy {
    margin-top: 5px;
    font: var(--font-copy);
}

#ip {
    font: var(--font-ip);
}

#date {
    font: var(--font-date);
}

#refresh {
    padding-top: 5px;
    width: 100%;
}