@font-face {
    font-family: dinnext;
    src: url(/DINNextLTPro-Light.otf);
}

body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}


.cover {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;

    font-family: dinnext;

    color: white;

    background-color: #121415;

    background-image: url("/pexels-kai-pilger-1341279.jpg");
    background-repeat: repeat;
    background-size: 100%;

}

.lost {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    background-color: rgb(255, 255, 255, 0.1);
}

#lostspan {
    font-size: 320%;
    font-weight: 700;
}

.find {
    font-size: xx-large;
}

#findbutton {
    font-size: larger;
    cursor: pointer;
    padding: 12px 48px;

    background-color: rgb(255, 255, 255, 0.2);

    border: 1px solid rgb(255, 255, 255, 0);;

    border-radius: 10px;

    box-sizing: border-box;

    transition: all 0.3s;
}

#findbutton:hover {
    border: 1px solid white;
    background-color: rgb(18, 20, 21, 0.6);
    color: white;
}