* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: url("../img/main-bg.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
}

.headline {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.button-container {
    position: fixed;
    left: 50%;
    bottom: 90px; /* nad footerem */
    transform: translateX(-50%);
    z-index: 50;
}

#playButton {
    position: relative;
    width: 390px;
    height: 120px;

    border-style: solid;
    border-image: url("../img/play_button.png") round;
    border-image-slice: 61 fill;
    border-image-width: 80px;

    filter: brightness(1.1);
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: transform .15s ease, filter .15s ease;
}

#playButton:hover {
    transform: scale(1.04);
    filter: brightness(1.2);
}

#playButton:active {
    transform: scale(0.98);
}

#playButton .text {
    position: absolute;

    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;

    user-select: none;
    pointer-events: none;
}

#playButton .stroke {
    -webkit-text-stroke: 6px #000000;
    paint-order: stroke fill;
}

.logo {
    width: min(25vmax, 256px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    user-select: none;
    pointer-events: none;
}

.headline h1 {
    width: 100%;
    text-align: center;
    position: absolute;
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
}

.headline .normal {
    color: #f11086;
}

.stroke-white {
    -webkit-text-stroke: 8px #fff;
    paint-order: stroke fill;
    filter: drop-shadow(1.5px 1.5px .08rem rgba(26, 74, 102, .4));
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 58px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 18px;

    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2d0b4f;
}

.footer-left a {
    color: #2d0b4f;
    text-decoration: none;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right img {
    height: 36px;
    display: block;
}