* {
    margin: 0;
    padding: 0;
    font-family: 'Inconsolata', monospace;
}

body {
    color: #26a269;
    background: #300a24;
    padding-left: 20px;
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

.art {
    color: white;
    position: relative;
    font-family: monospace;
    white-space: pre;
    margin-left: 0;
    font-size: 1em;
}

.welcome {
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
}

.terminal {
    display: flex;
    align-items: flex-start; 
    font-size: 16px;
}

.terminal input {
    background: #300a24;
    outline: none;   
    border: none;
    color: #ffffff;
    margin-left: 10px;
    font-size: 16px;
    width: 80%;
}

.user {
    line-height: 19px; 
}

textarea {
    background: #300a24;
    color: white;
    border: none;
    outline: none;
    box-sizing: border-box;      
    font-size: 16px;             
    line-height: 19px;           
    min-height: 19px;            
    height: 19px;
    padding: 0;                  
    box-sizing: content-box;     
    resize: none;                
    overflow: hidden;            
    width: 66%;
    margin-left: 10px;
    overflow-x: auto;             
}

.player {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 350px;
    height: 690px;
    /* border: 2px solid #10462d; */
    box-shadow: 5px 5px 30px black;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.player.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

.control {
    width: 348px;
    height: 36px;
    background: #303030;
    border: 0.7px solid #4f4f4f;
}

.control button {
    color: #4f4f4f;
    position: relative;
    top: 5px;
    left: 318px;
    width: 25px;
    height: 25px;
    font-size: 1em;
    background: #333;
}

.space {
    visibility: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.space.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

.space iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1600px;
    height: 800px;
    box-shadow: 5px 5px 30px black;
    border-bottom: 0.7px solid #4f4f4f;
    border-left: 0.7px solid #4f4f4f;
    border-right: 0.7px solid #4f4f4f;
}

.control_space {
    position: absolute;
    top: calc(50% - 18px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1600px;
    height: 836px;
    background: #303030;
    border: 0.7px solid #4f4f4f;
}

.control_space button {
    color: #4f4f4f;
    position: relative;
    top: 5px;
    left: 1569px;
    width: 25px;
    height: 25px;
    font-size: 1em;
    background: #333;
}
