* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    line-height: 1.5;
    background: #000;
}

html {
    height: 100%;
    position: relative;
    overflow-y: hidden;
}

@font-face {
    font-family: 'CodaRegular';
    src: url('../fonts/Coda-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PoiretOne';
    src: url('../fonts/PoiretOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    background: url('../img/background.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
}

.container {
    position: relative;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

.logo {
    font-size: 36px;
    font-weight: bold;
}

.highlight {
    color: #C12C2C;
}

.tape {
    position: absolute;
    bottom: 370px;
    z-index: 3;
    width: calc(100vw + 80px);
    height: 40px;
    background: yellow;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-family: 'CodaRegular', Arial, sans-serif;
    bottom: 0;
    position: relative;
}

.hazard-border {
    border: 10px solid;
    border-image: repeating-linear-gradient(-55deg,
            #000,
            #000 20px,
            yellow 20px,
            yellow 40px) 10;
}

.tape:nth-child(2) {
    transform: translateX(-50%) rotate(-10deg);
    margin-top: -60px;
}

.message {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poiret One', sans-serif;
    font-weight: lighter;
    font-size: 25px;
}
.sm {
    font-size: 13px;
}

.message span {
    display: block;
    margin: 5px 0;
}

.logo img {
    max-width: 100%;
}

.tape.hazard-border {
    height: 60px;
}

.tape.hazard-border span {
    padding-left: 10px;
}

@media (max-width: 768px) {
    .tape.hazard-border span {
        display: none;
    }

    .tape.hazard-border {
        height: 40px;

        justify-content: center;

    }

    .message {
        font-size: 16px;
    }

    .sm {
        font-size: 8px;
    }

    .tape:nth-child(2) {

        margin-top: -40px;
    }
    .logo img {
        max-width: 60%;
    }
    
}

@media (max-width: 960px) and (orientation: landscape) {
    body {
        height: 100%;
        position: relative;
        overflow-y: hidden;
    }

    .logo img {
        max-width: 30%;
    }

    .message {
        font-size: 13px;
    }

    .message span:nth-child(1) {
        font-size: 16px;
    }
}