* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-family: "Days One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body, html {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: black;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img {
    display: none;
    width: 100%;
    height: 100%;
}

a {
    color: #fff;
    z-index: 200;
    font-size: 15px;
    background-color: hsl(354, 93%, 60%);
    border-radius: 25px;
    padding: 10px 20px;
    position: absolute;
    top: 75%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    transition: 1s;
}

a:hover {
    background-color: hsl(354, 82%, 26%);
    cursor: pointer;
    transition: 1s;
}

@media only screen and (max-width: 600px) {
    video {
        display: none;
    }
    img {
        display: block;
    }
    
    a {
        top: 61.5%;
        font-size: 10px;
        width: 200px;
        padding: 4px 2px;
    }
}