@font-face{
    font-family: adamFont;
    src: url(media/fonts/adam.cg_pro.otf);
}

@font-face{
    font-family: ralewayFont;
    src: url(media/fonts/Raleway-ExtraLight.ttf);
}

body, html {
    height: 100%;
}

body {
    margin: 0;
    background: linear-gradient(#e831318c,#f0c8fd8c);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: ralewayFont;
    font-size: 20px;
    white-space: pre-line;
}

body > div {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 3px;
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#title-credits {
    font-family: adamFont;
    padding: 50px;
}

a:link {
    color: inherit;
    text-decoration: none;
    transition: color 1s ease-out;
}

a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover{
    color: #88b4d6;
    transition: color .5s ease-out;
}