@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    user-select: none;
}

:root {
    --main: #87C9C0;
    --second: #0088FF;
    --sb-track-color: #232E33;
    --sb-size: 6px;
}

body {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main);
}

#left {
    height: 100%;
    width: 50%;
    background-image: url(img/portret_pop1.jpg);
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
}

#right {
    height: 100%;
    width: 50%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    overflow: auto;
}

.link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    min-height: 15%;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 10px;
    border-radius: 6px;
    padding: 2%;
    box-sizing: border-box;
    transition: scale .5s ease;
}

.link:hover {
    cursor: pointer;
    scale: 1.05;
}

@media (max-width: 550px) {
    body {
        flex-direction: column;
    }

    .link {
        width: 100%;
    }
}

*::-webkit-scrollbar {
  width: var(--sb-size)
}

*::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

*::-webkit-scrollbar-thumb {
  background: #82828267;
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: #828282
                     var(--sb-track-color);
  }
}