.wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
body {
    background-color: rgba(0, 0, 0, 0.99);
}

.screen {
    width: 1024px;
    height: 576px;
    background-color: black;
    background-size: cover;
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 200px;
    height: 576px;
    padding-left: 40px;
}

.low p {
    margin: 12px;
    padding: 0;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap-about {
    width: 30%;
    margin-top: 60px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.43);
}
.wrap-credits {
    height: 100%;
    width: 100%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.43);
}
p {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    color: white;
}
h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 26px;
}
.text1 {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    color: white;
}

/* animations */

.fade-in-out {
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.fade-in {
animation-name: fade-in;
animation-duration: 2s;
animation-fill-mode: forwards;
}

.fade-out {
animation-name: fade-out;
animation-duration: 2s;
animation-fill-mode: forwards;
}

@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes fade-out {
from { opacity: 1; }
to { opacity: 0; }
}

.btn-container {
    flex-direction: column;
}
.btn-container2 {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    margin-top: 100px;
}

.character {
    width: 300px;
}
.choose-char {
    border: solid 3px rgba(255, 255, 255, 0.459);
    
}
.choose-char:hover {
    background-color: rgba(255, 255, 255, 0.055);
}
.char-wrap {
    justify-content: space-around;
}
.pointer {
    cursor: pointer;
}

.next {
    width: 40px;
}

.no-opacity {
    opacity: 1 !important;
}

.choice-btn {
    background-color: transparent;
    height: 50%;
    color: white;
    width: 350px;
    margin: 2px;
}
.choice-btn:hover {
    background-color: rgba(255, 255, 255, 0.075);
}
#next {
    background-color: transparent;
    height: 50%;
}
.btn {
    background-color: transparent;
    height: 50%;
}
#next:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

.text-container {
    color: rgb(185, 6, 6);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-family: 'Bitter', serif;
    font-size: 50px;
    text-align: center;
    
}
.text-container p {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
}

.dialogue-wrap {
    opacity: 0 ;
    display: flex;
    width: 100%;
    height: 150px;
    background-color: rgba(0, 0, 0, 0.464);
    border: solid 2px rgb(209, 188, 175);
}
.dialogue-character {
    width: 150px;
    border-right: solid 2px rgb(209, 188, 175);
}

.dialogue-box {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
#dialogue-text {
    color: white;
    margin: 0;
}
.positioner {
    height: 100%;
    display: flex;
    align-items: flex-end;
}