*{
    margin: 0;
    padding: 0;
    
    user-select: none;
}

@font-face {
    font-family: 'e-Ukraine';
    font-style: normal;
    font-weight: normal;
    src: local('e-Ukraine'), url('assets/e-Ukraine-Regular.otf') format('truetype');
  }


body{
    font-family: 'e-Ukraine', serif;
    background-color: rgb(10 10 10);
    color: #d5d5d5;
    height: 100%;
}

#particles-js{
    position: fixed;
    width: 100%;
    height: 100%;    z-index: -1;
}

.main{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
}

.page{
    width: 100%;
    height: 100vh;
}

#logo{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
}

.page-display{
        position: fixed;
    background-color: #424242;
    width: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    bottom: 0;
    right: 0;
    margin-bottom: 50vh;
    margin-right: 10px;
    padding: 5px;
    border-radius: 15px;
}

.page-display > img{
    padding-top: 2.5px;
    padding-bottom: 2.5px;
}

.page-back1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.page-back1 img {
    display: block;
    width: 100%;
    height: auto;
}


.page-magin{
    margin: 5%;
}

.game-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 8px 14px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    transform: translateY(100%);
    transition: transform 0.25s ease;

    display: flex;              /* в одну строку */
    align-items: center;        /* выровнять по вертикали */
    justify-content: space-between;
    gap: 8px;
}

.game-title {
    font-size: 40px;
    font-weight: 600;
}
.page-back1:hover .game-caption {
    transform: translateY(0);
} 

.game-caption .steam-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.game-caption .steam-link img {
    height: 2.6em;   /* примерно высота текста */
    width: auto;
    display: block;
}

.header-text{
    font-size: 40px;
    font-weight: 600;
    text-align: center;

    padding: 30px;
}

.space{
    margin-top: 30px;
}

.bio-holder{
        margin: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}
.avatar{
    width: 20% !important;    
    border-radius: 20px;
    height: 20%  !important;
}

.bio-holder > div > p{
    font-size: 12pt !important;
}

a{
    color: wheat;
    text-decoration: none;
}

.page-back1 > img {
    cursor: pointer;
}