@font-face {
    font-family: Ubuntu;
    src: url(Ubuntu-Regular.ttf);
}
@font-face {
    font-family: Ubuntu;
    src: url(Ubuntu-Medium.ttf);
    font-weight: bold;
}

html, body {
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    margin: 0;

    font-family: Ubuntu;
}
.pageContents {
    background-image: url(img/black_lozenge.png);
    background-color: rgba(226, 224, 241, 0.096);
    background-size: 100px;
    background-blend-mode: color-burn;

    box-sizing: border-box;
    min-height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}
.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(img/cutcube.png);
    background-blend-mode: color-burn;
    background-color: rgba(34, 19, 87, 0.966);
    width: 800px;
    margin: 0;
    margin-block: 200px;
    padding: 0;

    border-style: solid;
    border-color: white;
    border-width: 5px;
    border-radius: 30px;
}
.profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
}
.profilePhoto {
    display: flex;
    width: 384px;

    margin-top: 100px;
    margin-bottom: 50px;
}
.profilePhoto img {
    width: 100%;
    margin: 0;

    border-style: solid;
    border-color: white;
    border-width: 5px;
    border-radius: 256px;
}
.profileName {
    color: white;
    font-weight: bold;
    font-size: 60px;
    text-align: center;

    margin: 0;
    width: 100%;
}
.sectionLine {
    width: 100%;
    height: 0;
    border-bottom: 5px solid white;
}
.paragraph {
    color: white;
    margin-inline: 25px;
    font-size: 30px;
}
.socials {
    display: flex;
    flex-flow: column;

    margin-bottom: 50px;
}
.social {
    color: white;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    font-size: 75px;
    
    margin-top: 50px;
    flex: 0;
    height: 400px;

    background-color: magenta;
}
.socialContent {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    padding-inline: 50px;
    background-color: violet;
}
.socialContent button {
    border-width: 5px;
}
.socialIcon {
    width: 256px;
    background-color: blue;
}
.socialIcon img {
    width: 100%;
}
.socialName {
    padding-block: auto;
    
    background-color: pink;
    font-weight: bold;
}