/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: "Shin Go Bold";
    src: url("fonts/ATTFShinGoProBold.ttf") format("truetype");
}

body {
    max-width: 800px;
    margin: 50px auto;
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient( 150deg , #3744aa, #d48cb4, #ffffba);
    font-family: "Shin Go Bold", Arial, Helvetica;
}

@keyframes title-header-gradient {
    0%{background-position:10% 0%}
    20%{background-position:10% 0%}
    40%{background-position:91% 100%}
    60%{background-position:10% 0%}
    100%{background-position:10% 0%}
}

h1, h2 {
    background-image: linear-gradient( 330deg , #3744aa, #d48cb4, #ffffba);
    background-size: 200% 200%;
    animation: title-header-gradient 20s ease infinite;
    color: transparent;
    background-clip: text;
    margin: 0;
}

#title h1{
    height: 200px;
    font-size: 7em;
    text-align: center;
}

#title h2{
    margin-top: -50px;
    font-size: 6em; 
    text-align: center;
}