@font-face {
    font-family: 'BreeSerif';
    src:  url('BreeSerif-Regular.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'BreeSerif', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

li {
    list-style-type: none;
}

.download {
    border-radius: 12px;
    padding: 12px;
    background-color: rgb(194, 194, 194);
    color: rgb(43, 43, 43);
    margin-bottom: 15px;
}

.download:focus {
    color: rgb(43, 43, 43);
}

.playFooter {
    margin-bottom: 25px;
    padding-bottom: 80px;
}

#play {
    position: fixed;
    bottom: 0;
}

.initHeading {
    font-size: 7em;
    text-align: center;
}

.images {
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
}

.start {
    height: 100vh;
}

.start h1 {
    text-align: center;
    align-items: center;
    display: inline-flex;
    top: 100px;
    color: rgb(43, 43, 43);
}


.start h1 {
    position:relative;
    animation:mymove 3s ease-out forwards;
    animation-iteration-count:1;
    
    /* Safari and Chrome */
    -webkit-animation:mymove 3s;
    -webkit-animation-iteration-count:1;
}

@keyframes mymove { 
    from {
        top: 0px;
        opacity: 0;
    }
    to {
        top: 100px;
        opacity: 1
    }
}

@-webkit-keyframes mymove {
    from {
        top: 0px;
        opacity: 0;
    }
    to {
        top: 100px;
        opacity: 1;
    }
}
