@font-face { font-family: TheRoom; src: url('font-retro.ttf'); } 

h3 {
    color: white;
    font-family: TheRoom, sans-serif;
}

p {
    color: black;
    font-family: TheRoom, sans-serif;
}

body {
    background-color: rgba(2, 2, 2, 255);
    font-family: TheRoom, sans-serif;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10vh 10vh;
    box-sizing: border-box;
    align-items: baseline;
}

.bar h3 {
    margin: 0;
}

.bar-right img {
    max-height: 40px;
    width: auto;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.master {
    
}

.window {
    max-width: 90%;
    width: 300px;
}

.enter img {
    max-width: 100%;
    height: auto;
    margin: auto;
    padding: -100px;
}

@media (min-width: 768px) {
    .main {
        flex-direction: row;
        justify-content: space-evenly;
    }
}