@import url('https://fonts.googleapis.com/css2?family=Lexend');


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-y: auto;
    background-color: #11001b
}

#canvas {
    position: fixed;
    top: 0; left: 0;
    bottom: 0; right: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 10%;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    color: rgb(188, 159, 226);
}
h1, h2, h3 {
    text-align: center;

    text-decoration: none;
    margin: 0;
}
h1, h2 {
    margin: 10px;
}
p {
    margin: 10px;
}
* {
    font-family: "Lexend";
    color: rgb(188, 159, 226);
}

#topbar {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    height: 50px;
    margin: 15px 15px 0px 15px;

    display: flex;
    justify-content: space-between;

    background-color: rgb(22, 8, 53);
    border: rgb(55, 17, 109)1px solid;
    border-radius: 15px;
}
.icon {
    width: 40px;
    height: 40px;
    padding: 5px;
    overflow: hidden;
    display: inline-block;
}
.icon :hover {
    transform: rotate(5deg);
}
#pfp {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease;
    transform-origin: center;
}
#pages {
    padding: 0px 7.5px;
}
.page {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 7.5px;

    display: inline-flex;
}

#content {
    position: relative;
    top: 80px;
    width: 65%;
    z-index: 0;
    margin: 0px auto 0px auto;
    padding-bottom: 10px;
}

.block {
    background-color: rgb(22, 8, 53);
    border: rgb(55, 17, 109)1px solid;
    border-radius: 15px;

    left: 0px;
    right: 0px;
}

.pb {
    padding: 10px;
    margin: 10px 0px;
}
.c {
    text-align: center;
}
.grd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    flex-wrap: wrap;
    padding: 2.5px 2.5px;
    justify-content: flex-start;
}
.p {
    padding: 10px;
    margin: 2.5px 2.5px;
}
.hm {
    margin: 5px;
}
.hp {
    padding: 5px 10px 5px 10px;
}
.card {
    padding: 5px 10px 5px 10px;
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.card img:hover {
    transform: scale(1.02);
}
