@charset "UTF-8";

:root {
    --bg-color: #154D45;
}

abbr,address,article,aside,audio,b,blockquote,body,button,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,html,a,i,iframe,img,input,select,ins,label,legend,li,main,mark,menu,nav,object,ol,p,pre,q,samp,section,span,strong,sub,sup,table,tbody,td,textarea,tfoot,th,thead,time,tr,ul,var,video {
    -webkit-appearance: none;
    border: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    outline: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

div {
    position: relative;
}

html,body,main,div {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    text-rendering: geometricPrecision;
    -webkit-overflow-scrolling: touch;
}

main {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 100svh;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}

main > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    margin-left: 100px;
    max-width: 500px;
    width: 100%;
}

.cta {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 150px;
    width: 450px;
    
}

@media screen and (max-width: 1366px) {
    body {
        backdrop-filter: brightness(0.7);
    }
    
}

@media screen and (max-width: 768px) {
    body {
        backdrop-filter: none;
        background-position: bottom center;
        background-size: contain;
    }
    main {
        align-items: flex-start;
        justify-content: center;
    }
    main > div {
        gap: 10px;
        margin-left: 0;
        max-width: 100%;
        padding: 20px;
        text-align: center;
        width: 100%;
    }
    main > div img {
        width: 90%;
    }
    main > div .cta {
        height: 100px;
        width: 300px;    
    }
    
}