@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');

:root {
    --yellow: #ad913a;
    --blue: #3a63ad;
    --green: #38b277;
    --red: #aa3a3a;
    --background: #ffffff;
    --font-family: 'Source Sans Pro', sans-serif;
    --font-color: black;
    --font-color-mirror: white;
    --font-size: 19px;
    --content: #171717;
    --component: #282828;
    --component-2: #333333;
    --padding: 10px 20px;
    --margin: 10px 20px;
    --button-padding: 10px 20px;
    --button-margin: 10px 20px;
}

html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0;
    padding: 0;
    top: 0px;
    left: 0px;
    display: grid;
    font-family: var(--font-family);
    font-size: var(--font-size);
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background);
    color: var(--font-color);
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

#root {
    display: grid;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
    top: 0px;
    left: 0px;
} 

h1 {
    display: grid;
    margin: 0;
    font-size: calc(0.06 * (100vw));
}

.ferlond-repair {
    width: 199px;
}

.logo {
    display: grid;
    margin: 0;
    padding: 120px;
    grid-auto-flow: row;
    justify-items: center;
}

/* body{
    background: #1d2630;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
} */

/* div{
    margin-bottom: 4em;
}*/

.animation{
    /* background: #F63D3A; */
    /* color: white; */
    /* width: 150px; */
    /* height: 150px; */
    /* position: relative; */
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%{transform: translateY(0);}
    20%{transform: translateY(-60px);}
    25%{transform: translateY(20px);}
    35%, 55%{transform: translateY(0);}
    60%{transform: translateY(-20px);}
    100%{transform: translateY(-20px) rotate(360deg);}
}