@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

body {
    background: #031224;
    background: linear-gradient(135deg, rgba(3, 18, 36, 1) 0%, rgba(4, 84, 140, 1) 51%, rgba(9, 97, 173, 1) 100%);
    background-attachment: fixed;

    color: #2d8bdd;
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    background-color: #112449;
    border-radius: 15px;
    height: 90px;
}

nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5%;
}

nav > ul > li > a {
    text-decoration: none;
    color: #2d8bdd;
}

h1 {
    font-family: 'Rubik';
    font-weight: 700;
    font-style: italic;
}

h2 {
    font-family: 'Bahnschrift SemiBold';
}

p#aboutme {
    color: #5194cf;
}

pre {
    background-color: #282c34;
    color: paleturquoise;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}

code {
    font-family: "JetBrains Mono";
}

img.avatar {
    width: 90px;
    height: 90px;
    border-radius: 7px;
    transition: 0.5s;
}

img.avatar:hover {
    rotate: 15deg;
}

img.avatar:active {
    transition: 0.1s;
    width: 110px;
    height: 110px;
}