
/* bebas-neue-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/bebas-neue-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jura-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jura';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/jura-v33-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


.card {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 25px;
    backdrop-filter:
            blur(12px)
            brightness(1.3);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(0,0,0,0.5);
    border-width: 0.5px;
    border-style: solid;
    border-color: rgba(195, 195, 195, 0.21);
    margin: 10px;
    height: auto;
}
body {
    background-image: url("img/forest.jpg");
    background-color: #112c1e;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

h1 {
    margin: 40px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 50px;
    color: #e0ffd0;
    opacity: 100%;
    text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.19);

}
li, p {
    font-family: "Jura", sans-serif;
    font-size: 20px;
    color: #dbe8be;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 1);
    padding: 4px;
}

.some {
    width: 60px;
    transition-duration: 0.4s;
}
.some:hover {
    opacity: 0.8;
    cursor: pointer;
}

@media(min-width: 1024px) {
    h1 {
        font-size: 70px;
    }
    li, p {
        font-size: 25px;
    }
}