html{
    width: 100vw;
    background-color: var(--background);
    color: var(--text);
    font-family: 'Courier New', Courier, monospace;

    --text: #deeaf8;
    --background: #06101a;
    --primary: #7db0ef;
    --secondary: #b4251e;
    --accent: #fadd37;

}

body{
    margin: 0;
}

.frame{
    margin: auto;
    /* padding: 2px; */
    width: 100%;
    max-width: 500px;
    height: 90vh;
    position: relative;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    border: 10px solid var(--primary);
    border-radius: 10px;

    overflow: hidden;

    z-index: 11;
}

.titleFrame{
    position: absolute;
    background-color: var(--primary);
    color: var(--accent);

    width: 100%;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
}

.navbarFrame{
    width: 100%;
    height: 50px;

    position: absolute;
    bottom: 0px;
    background-color: var(--primary);

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.navbarFrame a{
    height: 30px;
    aspect-ratio: 1;

    background-position: center;
    background-size: cover;
}

.navbarFrame img{
    width: 100%;
}

.memeSpace{
    width: 100%;
    height: calc(100% - 30px - 50px - 20px);
    /* background-color: red; */

    background-image: url(assets/cartoon-snail-loading-loading-gif-animation_2734139.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    overflow-y: scroll;
    overflow-x: hidden;
}

.profileSpace{
    width: 100%;
    height: calc(100% - 30px - 50px - 23px);
    /* background-color: red; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.profileSpace span:nth-child(1){
    text-align: center;
    font-size: small;
}

.profileSpace button{
    width: 150px;
    height: 50px;
    border: 0;    
    outline: 2px solid var(--secondary);
    border-radius: 10px;
    background-color: transparent;
    color: white;
    font-weight: bolder;
    font-size: medium;
    cursor: pointer;    
}

.meme{
    height: 500px;
    width: 100%;
    background-color: var(--background);
    border: 1px solid var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;

    
    flex-direction: column;
}

.memeImage{
    height: 300px;
    width: 100%;
    background-color: beige;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.memetitle, .credits{
    color: var(--secondary);
}

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