
html {
    margin: 0px;
}

body {
    margin: 0px;
    background-image: url('img/sf.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 10%;
    font-size: 16px;
}

.content {
    position: absolute;
    width: 80%;
    height: 60%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    
    /* X-RAY MODE
    border: 2px dashed white;*/
}

#profile {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 50%;
    
    /* X-RAY MODE */
    /*background-color: tan;
    border: 2px dotted black;
    box-shadow: 10px 7px black;*/

    transition: all .2s;
    margin: 0% 0% 2% 0%;
}

@keyframes hovering-movement {
    0%   {transform: translate(0%, 0%);}
    13%  {transform: translate(0.79%, -0.414%);}
    21%  {transform: translate(-0.359%, 0.736%);}
    25%  {transform: translate(-0.409%, -0.866%);}
    28%  {transform: translate(-0.209%, 0.766%);}
    33%  {transform: translate(0.257%, 0.558%);}
    50%  {transform: translate(1.5%, -1.7%);}
    63%  {transform: translate(-0.9%, -0.6%);}
    75%  {transform: translate(0.5%, -1%);}
    88%  {transform: translate(0.6%, -1.2%);}
    100% {transform: translate(0%, 0%);}   
}

@keyframes hovering-movement-intense {
    0%   {transform: translate(0%, 0%);}
    13%  {transform: translate(1.79%, -1.414%);}
    21%  {transform: translate(-1.359%, 25.736%);}
    25%  {transform: translate(-1.409%, 20.366%);}
    28%  {transform: translate(-1.209%, 11.766%);}
    33%  {transform: translate(1.257%, -1.558%);}
    50%  {transform: translate(0.5%, -18.7%);}
    63%  {transform: translate(-1.9%, -0.6%);}
    75%  {transform: translate(1.5%, -41%);}
    88%  {transform: translate(1.6%, -24.2%);}
    100% {transform: translate(0%, 0%);}   
}

@keyframes hovering-movement-old {
    0%   {margin: 0% 0% 0% 0%; padding: 0% 0% 0% 0%;}
    13%  {margin: 0.079% -0.414% 0% 0%;}
    21%  {margin: -0.359% 0.736% 0% 0%;}
    25%  {margin: -0.409% 0.866% 0% 0%;}
    28%  {margin: -0.209% 0.766% 0% 0%;}
    33%  {margin: 0.257% 0.558% 0% 0%;}
    50%  {margin: 0.5% -0.7% 0% 0%; padding: 0.2% 0.2%;}
    63%  {margin: -0.4% -0.3% 0% 0%;}
    75%  {margin: 0.2% -0.5% 0% 0%;}
    88%  {margin: 0.3% -1% 0% 0%;}
    100% {margin: 0% 0% 0% 0%; padding: 0% 0% 0% 0%;}
}

/* Make a gif for this! */
@keyframes hovering-color {
    0%   {background-image: linear-gradient(-30deg, orange, tan);}
    50%  {background-image: linear-gradient(-35deg, orange, tan);}
    100% {background-image: linear-gradient(-40deg, orange, tan);}
}



#profile-info {
    position: relative;
    width: 100%;
    font-family: "Helvetica";
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation-name: 'hovering-movement';
    animation-duration: 12s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    transition: transform .2s ease-in-out;
    
}

#profile-info:hover {
    animation-name: 'hovering-movement';
    animation-duration: 12s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    transition: transform .2s ease-in-out;
    /*box-shadow: 11px 8px black;*/
    
}

#profile-picture {
    display: block;
    position: relative;
    width: 17.5%;
    min-width: 15%;
    overflow: auto;
    object-fit: contain;
    border-radius: 100%;
    opacity: 100%;

    /*border-width: 2px;
    border-color: black;
    border-style: dashed;
    background-color: burlywood;*/
}

#profile-picture:hover {
    transform: scale(1.01);
}

#profile-picture img {
    position: relative;
    max-height: 100%;
    max-width: 100%;
    opacity: 100%;
}

#profile-name {
    position: relative;
    height: 100%;
    margin-left: 5%;
    font-family: "graphblack";
    letter-spacing: 0.1em;
    
    font-size: 7em;
    font-weight: 400;
    font-stretch: expanded;
    font-style: oblique;
    text-align: left;
    text-overflow: ellipsis;
    
    color: #ffe4c4;
    /*text-shadow: 0.1em 0.1em black;*/
}

#profile-name:hover {
    transform: scale(1.02);
    
    background: -webkit-linear-gradient(bisque, tan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




#links {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;

    background-color: transparent;
    /*width: 100%;*/
    transition: all .2s;
    opacity: 0.2;
}

.button {
    position: relative;
    height: 100%;
    max-width: 270px;
    max-height: 100px;
    /*width: 17.5%;*/
    transition: .3s all;

    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-family: "Helvetica";
    font-size: x-large;
    text-align: center;
    
    /* X-RAY MODE */
    /*
    background-color: tan;
    border: 2px dotted black;
    box-shadow: 5px 3px black; */
}

.button:hover {
    animation-name: 'hovering-movement-intense';
    transition-timing-function: ease-in-out;
    animation-duration: 9s;
    animation-direction: backwards;
    animation-iteration-count: infinite;
    opacity: 1;
    /*box-shadow: 6px 4px black;*/
}

.unfocused {
    opacity: 0.5;
}

.focused {
    opacity: 1;
    color: goldenrod;
}

.img-container {
    position: relative;
    width: 27%;
    overflow: hidden;

    background-color: transparent;
}

.img-container img {
    position: relative;
    max-height: 100%;
    max-width: 100%;
}

.label-text {
    display: inline-block;
    font-family: "unisansthincaps";
    font-size-adjust: 0.2;
    font-weight: 600;
    font-stretch: expanded;
    text-align: left;
    color: bisque;
}

a {
    text-decoration: underline dotted tan;
    font-size-adjust: 0.2;
}

a:hover {
    text-decoration: none;
}

a:hover .label-text {
    color: tan;
    font-family: "unisansthinitalic";
    font-size-adjust: 0.3;
}


/* Fonts */

@font-face {
    font-family: 'graphblack';
    src: url('fonts/web/graph-black_0-webfont.woff2') format('woff2'),
         url('fonts/web/graph-black_0-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'graphbold';
    src: url('fonts/web/graph-bold-webfont.woff2') format('woff2'),
         url('fonts/web/graph-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'graphcondensedbold';
    src: url('fonts/web/graphcondensed-bold-webfont.woff2') format('woff2'),
         url('fonts/web/graphcondensed-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'unisansheavyitaliccaps';
    src: url('fonts/web/uni_sans_heavy_italic-webfont.woff2') format('woff2'),
         url('fonts/web/uni_sans_heavy_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'unisansheavycaps';
    src: url('fonts/web/uni_sans_heavy-webfont.woff2') format('woff2'),
         url('fonts/web/uni_sans_heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'unisansthinitalic';
    src: url('fonts/web/uni_sans_thin_italic-webfont.woff2') format('woff2'),
         url('fonts/web/uni_sans_thin_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'unisansthincaps';
    src: url('fonts/web/uni_sans_thin-webfont.woff2') format('woff2'),
         url('fonts/web/uni_sans_thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}