@font-face {
    font-family: 'Cedra';
    src: url('./fonnts.com-Cedra_4F_Wide_Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cedra';
    position: relative;
    background-image: url('./bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

main {
    height: 100%;
    width: 100%;
    background-color: #00000034;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

main h1 {
    color: #faf6ec;
    text-align: center;
    font-size: clamp(3rem, 10vw, 10em);
    width: 100%;
    padding-top: 15px;
    margin-left: -17px;
    text-shadow: 2px 2px 8px #faf6ec;
    white-space: nowrap;
    margin-bottom: 0.2em;
    /* keeps it close to h3 */
}

main h1 span {
    color: #faf6ec;
}

main h3 {
    color: #faf6ec;
    font-size: clamp(1.2rem, 3vw, 2.5em);
    text-align: center;
    width: 100%;
    text-shadow: 2px 2px 8px #faf6ec;
    margin-left: -17px;
    margin-top: 0;
    /* remove extra space */
    white-space: nowrap;
    /* keep it one line */
}

footer {
    position: fixed;
    bottom: 0;
}