:root {
    --color-primary: #0075C9;
    --color-link: #0064C8;
    --color-text: #2E2C2A;
    --color-bg: #F2F0EE;
    --height-logo: 70px;
    --width-mover: 90%;
    --height-mover: auto;
    --font-size-link: 0.75rem;
    --font-size-copyright: 0.75rem;
    --font-size-moved: 1.75rem;
    --font-size-go: 0.875rem;
}

@media (min-width: 768px) {
    :root {
        --height-logo: 80px;
        --width-mover: 86%;
        --height-mover: auto;
        --font-size-link: 0.875rem;
        --font-size-copyright: 0.8125rem;
        --font-size-moved: 1.875rem;
        --font-size-go: 0.9375rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --height-logo: 90px;
        --width-mover: 60%;
        --height-mover: auto;
        --font-size-link: 0.875rem;
        --font-size-copyright: 0.875rem;
        --font-size-moved: 2rem;
        --font-size-go: 1rem;
    }
}

@media (min-width: 1400px) {
    :root {
        --height-logo: 100px;
        --width-mover: 100%;
        --height-mover: auto;
        --font-size-link: 0.875rem;
        --font-size-copyright: 0.875rem;
        --font-size-moved: 2rem;
        --font-size-go: 1rem;
    }
}

* {
    font-family: 'Roboto', 'Arial', 'sans-serif';
    font-weight: 450;
    color: var(--color-text);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: var(--color-bg);
}

img {
    display: block;
}

.link {
    color: var(--color-link);
    font-size: var(--font-size-link);
}

#container-page {
    width: 100dvw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background-color: lightsteelblue;*/
}

#container-top {
    min-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding-top: 24px;
    /*background-color: blue;*/
}

#container-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    /*background-color: pink;*/
}

#container-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    /*background: orange;*/
}

@media (min-width: 768px) {
    #container-links {
        gap: 50px;
    }
}

@media (min-width: 1024px) {
    #container-links {
        gap: 80px;
    }
}

@media (min-width: 1400px) {
    #container-links {
        gap: 100px;
    }
}

#container-middle {
    min-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*background-color: yellow;*/
}

#container-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    /*background-color: azure;*/
}

@media (min-width: 1400px) {
    #container-main {
        width: 90%;
        flex-direction: row;
        gap: 40px;
    }
}

#container-main-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*background-color: lightcoral;*/
}

#container-main-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    /*background-color: lightgreen;*/
}

@media (min-width: 1400px) {
    #container-main-text {
        gap: 24px;
    }
}

#container-bottom {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
    /*background-color: green;*/
}

#container-copyright {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: var(--height-logo);
    /*background-color: lightseagreen;*/
}

#image-logo {
    height: var(--height-logo);
    width: auto;
}

#image-mover {
    height: var(--height-mover);
    width: var(--width-mover);
}

@media (min-width: 1400px) {
    #image-mover {
        max-height: 60vh;
    }
}

#text-moved {
    font-size: var(--font-size-moved);
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
    /*background-color: lightyellow;*/
}

#new-uri {
    padding: 10px 30px;
    font-size: var(--font-size-go);
    font-weight: 500;
    color: var(--color-bg);
    border: solid 1px var(--color-text);
    border-radius: 30px;
    background-color: var(--color-text);
    transition: all 0.2s ease;
}

@media (min-width: 1400px) {
    #new-uri {
        padding: 12px 36px;
        border-radius: 36px;
    }
}

#new-uri:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

#copyright {
    font-size: var(--font-size-copyright);
}