@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

* {
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Стандартное значение */
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
    background-color: #111111;
    font-size: 22px;

    font-family: "Indie Flower", cursive;
    font-weight: 400;
    font-style: normal;
}

.todo-list {
    padding: 20px;
    border-bottom: 1px solid #38002e;
    border-radius: 0px;
    
}
.todo-list .caption{
    font-size: 15px; 
    text-align: center;
    margin-bottom: 44px;
}
.todo-list ul   {
    font-size: 25px; 
    text-align: left;
    line-height: 135%;
    margin-bottom: 4px 0px 4px 0px;
    padding: 4px 0px 4px 0px;
}
ul {
    padding: 0 0 0 10px;
}
@keyframes swing {
    0% { transform: translate(8px, -4px); box-shadow: -8px 4px 0px #cf4a86;} 
    50% { transform: translate(2px, -4px); box-shadow: -2px 4px 0px #cf4a86;}
    100% { transform: translate(8px, -4px); box-shadow: -8px 4px 0px #cf4a86;}
}

a {
    color: #cf4a86;
    text-decoration: none;
    font-size: 18px;
    padding: 4px 7px;
    background-color: #2d0f27;
    margin: 4px 0px;
    transition: transform 0.2s, box-shadow 0.2s;    
    display: inline-block;
    transform: translate(0, 0);
    border-radius: 4px;
}
a:hover {
    text-decoration: underline;    
    transform: translate(8px, -4px);
    animation: swing 1s ease-in-out infinite;
    animation-delay: 0.4s;
    box-shadow: -8px 4px 0px #cf4a86;
    font-weight: 600;
    font-style: italic;
}

p {
    text-align: center;
}

header {
    width: 100%;    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center; 
}


.profile {
    min-width: 400px;   
    max-width: 800px;
    display: flex;
    justify-content:space-evenly;
}

.ownlinks {
    align-items: center;
    text-align: center; 
}
.game-list {
    padding-bottom: 80px;
    text-align: center;
}
.portfolio {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding-bottom: 60px;
    padding-top: 22px;
    
}
.portfolio a {
    border-width: 1px;
    border-radius: 9px;
    border-color: #cf4a86;
    border-style: solid;
    width: 40px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif
}
.boosty-link {
    padding-bottom: 22px;
}
.boosty-link a {
    font-size: 18px;
    background-color: #1e1809;
    color: #e57f12;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 0px #e57f12;
}
.boosty-link a:hover {
    animation: none;
}