html ,body {
    margin: 0;
    padding: 0;
    background-color: #020202;
    width: 100%;
    height: 100%;
    font-family: 'Darker Grotesque', sans-serif;
}

#container {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height:100%;
}
#main {
    margin: 0 auto;
    width:80%;
    max-width: 800px;
    min-height:600px;
    background-image:url("assets/bg.png");
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    color: white;
    padding: 20px;
}
#first-name {
    font-size:128px;
    margin: 0;
    padding: 0;
    height: 128px;
}
#last-name {
    font-size:64px;
    margin: 0;
    padding: 0;
    height: 64px;
}
.social_image {
   height: 28px;
}
.invert {
    filter: invert(100%);
}
#description {
    font-size: 48px;
}
a {
    color:white;
    text-decoration: none;
    text-underline: none;
}
footer {
    position: absolute;
    bottom: 0;
    color: #d1d1d1;
    margin-left: 5px;
}