﻿body {
    margin: 0;
    padding: 0;
    background: url("a.png") no-repeat center center fixed;
}

div.center {
    justify-content: center;
    align-items: center;
    display: flex;
}

div.outer {
    border-style: solid;
    border-radius: 25px;
    border-color: #4a4a4a;
    box-shadow: 0px 0px 20px #4a4a4a;
    position: absolute;
    width: 50%;
    min-width: 300px;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 100px;
    background: #4a4a4a;
}

div.inner {
    width: 95%;
    margin: auto;
}

div.asset {
    margin: 20px 0 20px 0;
    background-color: #303030;
    float: right;
    transition: .2s
}

div.asset:hover {
    transform: scale(1.05, 1.05);
}

div.profile {
    position: relative;
    top: -10vh;
    height: 120px;
}

p {
    font-family: Calibri;
    text-align: center;
    color: white;
    font-size: 18px;
}

p.asset {
    float: right;
    margin: 0;
    white-space: pre-line;
    text-align: left;
    font-size: 22px;
}

h1 {
    font-family: Cascadia Mono;
    text-align: center;
    color: white;
    background-color: #303030;
    width: 30vw;
    border-radius: 10px;
}

h2 {
    font-family: Calibri;
    text-align: center;
    color: white;
    background-color: #303030;
    border-radius: 10px;
}

img {
    max-width: 10vw;
    width: auto;
    height: auto;
}

img.social {
    width: 60px;
    height: auto;
    margin: 20px;
    transition: .2s;
}

img.social:hover{
    transform: scale(1.05, 1.05);
}

img.asset {
    max-width: 15vw;
    float: left;
    margin-right: 10px;
}