*{
    padding: 0;
    margin: 0;
}

body{
    color: white;
    background: url('ugv4567fgh5678fgh.png');
    background-attachment: fixed;
    background-size: cover;
}

h1{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    /* font-family: 'Red Hat Text', sans-serif; */
    font-family: 'Reenie Beanie', cursive;
    font-weight: lighter;
}

.coord{
    position: absolute;
    /* top:50%; */
    bottom: 10%;
    left:10%;
    /* transform: translate(-50%,-50%); */
    font-family: 'Red Hat Text', sans-serif;
    /* font-family: 'Reenie Beanie', cursive; */
    font-weight: lighter;
}

.coord a{
    /* text-decoration: none; */
    color: white;
}

.linebefore{
    position: fixed;
    height: 1px;
    width: 40%;
    background: white;
    top: 50%;
    -webkit-transition: all 0.7s ease;
    transition: all 0.15s ease;
}

.linebefore:after{
    position: absolute;
    content: ' ';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: white;
    right: 0;
    top: -5px;
}


.lineafter{
    position: fixed;
    height: 1px;
    width: 40%;
    background: white;
    top: 50%;
    -webkit-transition: all 0.7s ease;
    transition: all 0.15s ease;
    right: 0;
}

.lineafter:before{
    position: absolute;
    content: ' ';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: white;
    left: 0;
    top: -5px;
}