@font-face {
    font-family: Redact;
    src: url('/fonts/FlowCircular-Regular.ttf');
}

body {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    /*font-family: Redact;*/
    background-color: black;
}

div {
    border: 1px solid transparent;
}

.centerer {
    display: flex;
    justify-content: center;
}

.container {
    margin: 25px;
    display: grid;
    gap: 25px;
    grid-template-columns: 3fr 5fr;
    height: 85vh;
    max-width: 90vw;

    /*border: 2px solid blue;*/
}

.picture {
    border: 2px solid #61DF96;
    padding: 10px;
    position: relative;

    /*Change the background image according to the character!*/
    background-image: url("/images/artwork/finished/dance-potion-render-6-23-2025.jpg");
    background-color: #0f1e19;
    background-repeat: no-repeat;
    background-size: cover;

    /*You might have to change the position, depending on the character art*/
    background-position: center ;
}

.character-name {
    /*Another highly customizable field. You could change the font, size, and positioning*/
    color: #0f1e19;
    padding: 15px;
    background-color: #61DF96;
    font-size: x-large;
    margin: 0px;
}

.bevel{
    min-width: 30px;
    background-color: #61DF96;
    border: 0px;

    -webkit-clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
}

/*The bevel that appears next to the name box*/
.name-bevel{
    min-width: 30px;
    background-color: #61DF96;
    border: 0px;

    -webkit-clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
}

/*This holds the nav links and bevelled div together. Same for the character name*/
.hold-em-together {
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    border: 0px;
}

/*Move this div in order to move the character name with the bevel*/
.bevel-group-name {
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    border: 0px;
    position: absolute;

    bottom: -1px;
    left: 0px;
}

.bevel-group-directory {
    display: flex;
    flex-wrap: nowrap;
    position: absolute;

    left: -1px;
    top: -1px;
}

.bevel-group-directory > small {
    background-color: #61DF96;
    color: #0f1e19;
    padding: 5px;
}

.bevel-group-directory > small > a {
    color: #0f1e19;
}

.directory-bevel{
    min-width: 25px;
    background-color: #61DF96;
    border: 0px;

    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
}

.nav-links {
    /*Change this depending on the character*/
    padding-left: 10px;
    background-color: #61DF96;
    color: #0f1e19
}

.nav-links > p > a {
    /*Change this depending on the character*/
    color: #0f1e19
}

.content {
    text-align: center;
    overflow-y: hidden;

    display: flex;
    flex-direction: column;

    /*Could change this based on the character too*/
   /*border: 2px solid green;*/
}

.content > iframe {
    width: 100%;
    height: 100%;
    outline-offset: -4px;
    background-color: #0f1e19;

    /*The outline property allows one to apply a border to a div from the inside, rather than the outside. Outline offset is important to make sure it actually applies on the inside*/
    outline: 4px solid #61DF96;
    outline-offset: -4px;
}

@media (max-width: 600px){
    .container {
        margin: 25px;
        display: grid;
        gap: 15px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 3fr;
    }

    .picture {
    
        /*You might have to change the position, depending on the character art*/
        background-position: top right ;
        background-size: 70%;
    }
}