html,
body {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-image: linear-gradient(#FF6E32, #FF6D00);
    color: white;
    font-size: x-large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

header {
    text-align: center;
    margin-top: 16px;
}

#grimpei-logo {
    width: 60dvw;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100dvh;
}

.card-container {
    text-decoration: none;
    font-weight: 600;
    color: gray;
}

.card {
    background-color: white;
    border-radius: 20px;
    width: 200px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    border-bottom: rgb(174, 174, 174) 5px solid;
    box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.25);
}

#player {
    position: relative;
}

#play-video {
    background: none;
    border: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

#video {
    width: 100dvw;
    max-height: 256px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.more {
    text-decoration: none;
    color: white;
}

.further-information {
    opacity: 0.6;
    font-size: small;
    font-weight: 300;
    letter-spacing: 1px;
}

@media (min-width: 1080px) {
    #grimpei-logo {
        width: 20dvw;
    }

    #video {
        max-height: 512px;
    }
}
