@font-face {
	font-family: 'NimbusSanConD-Bol';
	src: url('fonts/NimbusSanConD-Bol.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

html {
    background-color: #e7a627;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    
}

.container {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    height: auto;
}

h1 {
    font-family: 'NimbusSanConD-Bol', sans-serif;
    font-size: clamp(30px, 5vw, 46px);
    color: #fff;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.textContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 700px;
}

.textBox {
    background: rgba(0, 0, 0);
    padding: 46px;
    width: 100%;
}

.textIllustration {
    z-index: -1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 55%;
    width: 598px;
    height: 750px;
}

