* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../gif/background.gif') center center no-repeat;
    background-size: cover;
}

.container {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: block;
}

.text-container {
    margin-top: 20px;
}

.line {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    min-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bracket {
    color: rgb(255, 255, 255);
    margin: 0 5px;
}

.text-content {
    color: rgb(255, 255, 255);
    font-family: 'Courier New', monospace;
    min-width: 10px;
}