/* Фон для всей страницы */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  visibility: hidden;
}

body {
  background: url('./assets/background.jpg') no-repeat center fixed;
  background-size: cover;
  font-family: 'VCR OSD Mono Rus', 'VCR OSD Mono', monospace;
  visibility: visible;
}

/* Остальные стили */
@font-face {
  font-family: 'VCR OSD Mono';
  src: url('./assets/vcr_osd_mono.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'VCR OSD Mono Rus';
  src: url('./assets/vcr_osd_mono_rus.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'VHS Icons';
  src: url('./assets/vhs_icons.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.title-bar {
    background-color: #000080;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'VCR OSD Mono Rus', 'VCR OSD Mono', monospace;
}
.title-buttons {
	background-color: #000080;
    color: white;
    display: inline-block;
	justify-content: space-between;
    align-items: center;

    font-family: 'VCR OSD Mono Rus', 'VCR OSD Mono', monospace;
}

.title {
    padding-left: 5px;
    font-weight: bold;
}

.main-content {
    padding: 10px;
	width: 340px;
    height: 80px;
    background: url('./assets/background.jpg');
    border: 2px solid #000;
    margin: 4px;
    font-family: 'VCR OSD Mono Rus', 'VCR OSD Mono', monospace;
	color: rgb(255, 255, 255);
}

.sidebar {
    float: right;
    width: 220px;
    padding: 10px;
    background-color: #c0c0c0;
    border: 2px solid #000;
    text-align: center;
    font-family: 'VCR OSD Mono Rus', 'VCR OSD Mono', monospace;
}

.placeholder-logo {
    position: absolute;
    top: 25px;
    right: 45px;
    width: 340px;
    height: 80px;
    background-color: #808080;
    color: #fff;
    text-align: center;
    line-height: 150px;
    margin: 10px auto;
    border: 2px dashed #fff;
	background: url(./assets/HCL_title.png) no-repeat center center;
	background-size: contain;
}

.placeholder-info {
    width: 200px;
    height: 100px;
    background-color: #606060;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 10px auto;
    border: 2px dashed #fff;
}

.sidebar {
    text-align: center;
    margin-top: 20px;
}

button.win-button {
    background-color: #c0c0c0;
    border: 2px solid #000;
    padding: 5px 15px;
    margin: 5px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'VCR OSD Mono Rus', 'VCR OSD Mono', sans-serif;
}
button.win1-button {
    background-color: #c0c0c0;
    border: 2px solid #000;
    padding: 5px 15px;
    margin: 5px;
    font-weight: regular;
    cursor: pointer;
    font-family: 'VCR OSD Mono Rus', 'VCR OSD Mono', sans-serif;
}

button.win-button:hover {
    background-color: #e0e0e0;
}

button.win1-button:hover {
    background-color: #e0e0e0;

}
