body {
    background-color: black;
    background-image: url('/assets/graphic/background.png');
    background-size: 42vh;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    opacity: 1;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.main-content {
    display: flex;
    background: rgba(0, 0, 0, 0);
    padding: 40px 60px;
    align-items: center;
}

.left-section {
    margin-right: 48px;
    text-align: left;
}

.site-title {
    font-size: 2.5em;
    margin-bottom: 14px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.main-btn {
    padding: 4px;
    font-size: 1.1em;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-family: 'Times New Roman', Times, serif; /* i don't know why but if this is not here it doesn't work */
}

.main-btn:hover {
    color: rgba(255, 255, 255, 0.3);
}

.ys-image {
    height: 160px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}