body {
    background-color: black;
    color: white;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: roboto;
    justify-content: center;
    /*height: 100%;*/
    overflow: auto;
    padding: 0em;

    .navbar {
        background-color: rgb(44,44,44);
        position: fixed;
        z-index: 999;
        text-align: left;
        width: 90%;
        overflow: hidden;
        white-space: nowrap;
        border-radius: 1.5em 1.5em 0em 0em;
        height: 4.5em;
        padding-bottom: 2%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        font-family: roboto;
        bottom: 0%;
        align-self: center;
        padding-left: 5%;
        padding-right: 5%;

        .navbarbutton {
            border-radius: 4em;
            border: none;
            background-color: rgb(44,44,44);
            cursor: pointer;
            transition: 0.3s;
            width: 6em;
            overflow: hidden;
            height: 100%;
            font-family: roboto;
            margin: 0.1em;
            text-align: center;
            color: white;

            .navbuttonimage {
                width: 60%;
                height: 60%;
                object-fit: fill;
            }

            .navbuttonimage:first-child {
                height: 35%; /*for the bigger list icon*/
            }
        }

        .navbarbutton:hover {
            background-color: rgb(60, 60, 60);
        }
    }

    .avgangeriframediv {
        background-color: rgb(44, 44, 44);
        width: 85%;
        margin-top: 2em;
        border-radius: 1em;
        padding: 0em;
        margin-bottom: 0em;
        border: 4px solid rgb(146, 146, 146);
        height: 76vh;

        iframe {
            width: 100%;
            border: none;
            height: 100%;
            margin-bottom: 0em;
            padding: 0em;
            border-radius: 1em;
        }
    }

    .ankomsteriframediv {
        background-color: rgb(44, 44, 44);
        width: 85%;
        margin-top: 2em;
        border-radius: 1em;
        padding: 0em;
        margin-bottom: 0em;
        border: 4px solid rgb(146, 146, 146);
        height: 76vh;

        iframe {
            width: 100%;
            border: none;
            height: 100%;
            margin-bottom: 0em;
            padding: 0em;
            border-radius: 1em;
        }
    }

    .sporwrapper {
        height: 90%;
        width: 90%;
        display: flex;
        flex-wrap: nowrap;
        /*justify-content: space-between;*/
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;

        .sporiframediv {
            background-color: rgb(44, 44, 44);
            width: 90%;
            min-width: 90%;
            margin-top: 2em;
            border-radius: 1em;
            padding: 0em;
            margin: 2em;
            margin-left: 0.5em;
            margin-bottom: 0em;
            border: 4px solid rgb(146, 146, 146);
            height: 76vh;
            scroll-snap-align: start;
    
            iframe {
                width: 100%;
                border: none;
                height: 100%;
                margin-bottom: 0em;
                padding: 0em;
                border-radius: 1em;
            }
        }
    }

    @media only screen and (max-width: 700px) {
        /*.sporwrapper {
            height: 100%;
            width: 300%;
            overflow-x: scroll;
            .sporiframediv {
                height: 100%;
                width: 100%;
            }
        }*/
    }
}