﻿.contentContainer {
    flex: 1;
    min-height: 100%;
    display: flex;
}

body {
    background-attachment: fixed;
    background-color: #020001;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins',sans-serif;
    font-size: 14px;
    margin: 0;
    min-height: 100vh;
    width: 100%;
    background-image: url('/img/dura_back.jpg');
}

.home {
    width: 100%;
    display: table;
}

.bunny {
    width: 42%;
    display: table-cell;
    background-image: url(/img/bunny.png);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    background-size: contain;
}



.text {
    width: 60%;
    display: table-cell;
    background-image: url(/img/text.png);
    background-size: clamp(125px, 60%, 600px) auto;
    background-repeat: no-repeat;
    background-position: center;
}




@media (max-width: 900px) {
    .home {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }

    .bunny {
        width: 100%;
        background-size: contain;
        min-height: 500px;
        background-position-x: center;
        margin-top: 60px;
    }

    .text {
        width: 98%;
        display: table-cell;
        background-image: url(/img/text.png);
        background-size: contain;
        background-repeat: no-repeat;
        min-height: 440px;
        padding: 25px;
        margin-top: 15px;
    }

}
