* {
    cursor: default;
}

body {
    background-color: #f1f1f1;
    font-family: Helvetica, sans-serif;
    margin: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    cursor: pointer;
}

.sidebar {
    background-color: white;
    color: black;
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 10vw;
    height: 8vh;
    align-items: center;
    font-size: x-large;
}

.sidebar h3 {
    font-weight: 400;
    cursor: pointer;
}

#sbrandname {
    font-weight: 700;
}

#exchangableBody {
    width: 100%;
}

#mainpage {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

#startpage {
    width: 100%;
    flex: 100%;
    display: flex;
}

#startpage img {
    width: 100%;
    height: 92vh;
    object-fit: cover;
}

.centerabsolute {
    width: 100%;
    position: absolute;
    margin-top: 15%;
}

#startpage div h1,
#startpage div h2 {
    color: black;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    width: 100%;
    text-align: center;
    font-size: 4rem;
}

#contact {
    width: 100%;
    height: 20vh;
    background-color: white;
}

.centeritems {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#socialmedia {
    flex: 100%;
    text-align: center;
}

#creatorlink {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

#creatorlink:hover {
    color: grey;
}

.puil {
    text-decoration: none;
    color: black;
    padding: 0 5%;
    font-size: 1.2rem;
}

#games {
    display: none;
    flex-wrap: wrap;
    width: 100%;
    height: 92vh;
}

#assets {
    display: none;
    flex-wrap: wrap;
    width: 100%;
    height: 92vh;
    gap: 0.5vw;
    justify-content: space-around;
}

.showcase {
    max-width: 25%;
    flex: 25%;
    height: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.assetshowcase {
    max-width: 24%;
    flex: 24.5vw;
    height: 50%;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: top;
    background-size: cover;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.showcasename {
    color: white;
    font-size: 2.6rem;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.namelink {
    text-decoration: none;
}

.showcaselink {
    position: absolute !important;
    bottom: 5%;
    right: 5%;
}

.fa {
    color: black;
    text-decoration: none;
    padding: 0 3%;
}

.fa:hover {
    color: grey;
}

#sbrandnamemobile {
    display: none;
}

#mobilesideheader {
    display: none;
}


/* Mobile */
@media (max-device-width: 812px) and (orientation: portrait) {
    .showcase {
        flex: 100%;
        max-width: 100%;
    }

    #sbrandname {
        display: none;
    }

    #sbrandnamemobile {
        display: block;
    }

    #pcsideheader {
        display: none;
    }

    #mobilesideheader {
        display: block;
    }
}