html {
    height: 100%;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
    height: 100%;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
}

p {
    font-family: Arial, Helvetica, sans-serif;
}

div {
    max-width: 100%;
}

/* General (for all pages) */

.top-head {
    display: block;
    position: relative;
    width: 100%;
    height: 150px;
    text-align: center;
    top: 0;
    left: 0;
    background-color: white;

}

.top-navigation {
    display: inline-block;
    text-decoration: none;
    color: #a4a4a3;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-left: 8px;
}

.top-navigation:hover {
    color: rgb(67, 67, 67);
}

.top-navigation-login {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    background-color: white;
    border: solid;
    border-color: black;
    color: black;
    margin-top: 30px;
    right: 120px;
    position: absolute;
    cursor: pointer;
}

.top-navigation-register {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    background-color: black;
    border: solid;
    border-color: black;
    color: white;
    margin-top: 30px;
    right: 30px;
    position: absolute;
    cursor: pointer;
}

.top-navigation-account {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 60px;
    background-color: white;
    border: solid;
    border-color: transparent;
    border-radius: 15px;
    color: black;
    margin-top: 30px;
    right: 30px;
    position: absolute;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.418);
    cursor: pointer;
}

.phoneTopNavBreak {
    height: 80px;
    display: none;
}

.home-page-text-bottom {
    margin: auto;
    width: 70%;
    text-align: center;
    background-color:#d3ebf1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-size: 10px;
}

.central-div-home {
    height: 75vh;
}


.mid {
    display: flex;
    justify-content: center;
}

.mid-about {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mid-about-video {
    padding: 15px;
    width: 460px;
    height: 259px;
    max-width: 100%;
}

.mid-about-bio {
    width: 400px;
    height: 250px;
    padding: 10px;
    background-color: #d3f1ec;
    text-align: center;
}

.footer {
    display: flex;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
    background-color: #d3f1ec;
    z-index: 3;
}

.footer-navigation {
    display: inline-block;
    text-decoration: underline;
    color: rgb(67, 67, 67);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-left: 8px;
    cursor: pointer;
}

.footer-copy {
    display: inline-block;
    text-decoration: none;
    color: rgb(85, 85, 85);
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 8px;
}

.signInMenu {
    width: 800px;
    height: 80%;
    max-height: 550px;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.418);
    display: block;
    border-radius: 15px;
    position: relative;
    overflow: auto;
    animation-name: signInMenuAnimation;
    animation-duration: 0.2s;
    animation-direction: normal;
    opacity: 1;
}

@keyframes signInMenuAnimation {
    0% {
        width: 600px;
        height: 60%;
        opacity: 0.1;
    }

    100% {
        width: 800px;
        height: 80%;
        opacity: 1;
    }
}

@keyframes signInMenuDivAnimation {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

.signInMenuBackground {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    /* Add the blur effect */
    filter: blur(8px) brightness(50%);
    -webkit-filter: blur(8px) brightness(50%);
    z-index: 0;
    object-fit: cover;
}

.signInMenuContent {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    z-index: 1;
    position: relative;
}

/* Landing page */

.background-video-cover {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.5);
}

.background-video-cover-text {
    font-weight: 700;
    color: white;
    font-size: 100px;
    animation-name: none;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    text-shadow: 5px 5px rgba(0, 0, 0, 0.4);
}

.background-video {
    display: block;
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
}

.background-video-playback {
    width: 100%;
    z-index: -1;
}

/* Store page */

.store-item-div {
    display: inline-table;
    position: sticky;
    max-width: 200px;
    height: 300px;
    max-height: 350px;
    background-color: white;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.418);
    cursor: pointer;
    margin: 10px 10px;
    z-index: 2;
    transition: all 0.5s;
    border-radius: 5px;
    transform: scale(1);
}

.store-item-div:hover {
    transform: scale(1.2);
    z-index: 5;
}

.store-item-div:hover .store-item-preview {
    max-width: 250px;
    /*height: 250px;
    transform: scale(1.5);*/
}

.store-item-preview {

    display: block;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    transition: all 1s;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;

}

.store-item-price-tag {
    width: 60px;
    height: 30px;
    background-color: #4b8ce5;
    position: absolute;
    left: 5px;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.store-item-discord-tag {
    width: 70px;
    height: 30px;
    background-color: #7258e6;
    position: absolute;
    left: 70px;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.store-item-price {
    color: white;
}


.store-item-title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(32, 32, 32);
    font-size: smaller;
    margin-left: 5px;
}

.store-item-description {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: rgb(50, 50, 50);
    font-size: x-small;
    margin-left: 5px;

}

.store-item-full-div {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.589);
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10;
}

.store-item-full {
    width: 800px;
    height: 80%;
    background-color: white;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.418);
    display: block;
    border-radius: 15px;
    position: relative;
    overflow: auto;
}

.store-item-full-side {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;

}

.store-item-full-button {
    width: 50%;
    height: 50px;
    background-color: #4b8ce5;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Contact page */

.contact-field {
    display: flex;
    width: 500px;
    height: 40px;
    box-shadow: 1px 1px 5px 3px rgba(0, 0, 0, 0.418);
    border-radius: 15px;
    color: #9a9fa5;
    font-weight: bold;
    margin: auto;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Account page */

.account-banner-div {
    width: 95%;
    height: 250px;
    margin: auto;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.418);
    background-image: url('/media/crashsune-banner-default.jpg');
    background-position: center;
    background-size: cover;
}

.account-banner-pfp {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    left: 25px;
    float: left;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.418);
}

.account-banner-username {
    margin-left: 60px;
    color: white;
    font-size: 60px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.418);
}

.account-badges-div {
    width: 500px;
    height: 300px;
    margin: auto;
}

.account-banner-level {
    width: auto;
    height: 165px;
    right: 15px;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 60px;
    margin-bottom: -195px;
}

.account-level-seperate {
    width: auto;
    height: 165px;
    display: none;
    justify-content: center;
    position: relative;
    margin: auto;
}

@keyframes logo-beat {
    0% {
        font-size: 115px;
    }

    12.5% {
        font-size: 100px;
    }

    25% {
        font-size: 115px;
    }

    37.5% {
        font-size: 100px;
    }

    50% {
        font-size: 115px;
    }

    62.5% {
        font-size: 100px;
    }


    100% {
        font-size: 115px;
    }
}



/* Phone responsitivity */

@media screen and (max-width: 1100px) {

    .central-div-home {
        height: unset;
    }

    .top-navigation-login {
        width: 70px;
        height: 35px;
        right: 90px;
        margin-top: 25px;
    }

    .top-navigation-register {
        width: 70px;
        height: 35px;
        right: 10px;
        margin-top: 25px;
    }

    .store-item-div {
        display: table;
    }

    .account-banner-level {
        display: none;
    }

    .account-level-seperate {
        display: flex;
    }

    .account-banner-username {
        font-size: 40px;
    }

    .phoneTopNavBreak {
        display: block;
        line-height: 80px;
    }

    .top-navigation-account {
        width: 125px;
        height: 20px;
    }

    .account-banner-pfp {
        width: 100px;
        height: 100px;
    }

    .account-banner-div {
        height: 150px;
    }

    .mid-about {
        display: block;
    }

    .mid-about-video {
        padding: 0;
        margin-top: 50px;
        width: 100%;
        height: 60%;
    }

    .mid-about-bio {
        padding: 0;
        width: 100%;
    }

    .home-page-text-bottom {
        margin-top: 30%;
        width: 95%;
        background-color: transparent;
        font-size: 8px;
    }

    .background-video-playback {
        width: 400%;
    }

    .background-video-cover-text {
        font-size: 300%;
    }

    .background-video {
        display: none;
    }

    .background-video-cover {
        display: none;
    }

    .signInMenu {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        animation-name: none;
    }

}