@charset "UTF-8";


/*----------------------------------------------- 
                CSS default reset
-----------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

* {
  	margin: 0;
    box-sizing: border-box;
}

/*----------------------------------------------- 
                    General
-----------------------------------------------*/

html {
  	height: 100%;
    scroll-behavior: smooth;
}

body {
	margin: 0;
  	overflow: auto;
  	background-color: #fff;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

html, body {
    height: 100%;
    overflow-x: none;
}

h1, h2, h3, h4, h5, p, span {
    font-family: "Inter", sans-serif;
    color: #0D0D0D;
}

h1 {
    font-weight: 500;
    font-style: normal;
    font-size: 3.75rem !important;
    font-family: 'peridot-pe-variable', sans-serif !important;
    line-height: 1.25;
}

span {
    display: block;
    font-weight: 400;
    font-style: normal;
    font-size: 14px !important;
}

.content {
    display: block;
    width: 100%;
    background-color: #ABFFF4;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    max-width: 1024px;

    padding: 4rem;
    border-radius: 8px;
}

.content img {
    max-width: 300px;
    display: block;
}

.text {
    margin: 4rem 0rem 4rem 0rem;
}

.text-bottom {
    display: flex;
    justify-content: space-between;
}



/*----------------------------------------------- 
                Media queries
-----------------------------------------------*/


@media screen and (max-width: 1480px) {}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {
.content { max-width: 100%; }
.content img {max-width: 300px; }
.text { max-width: 80%; }

}


@media screen and (max-width: 480px) {
.text { max-width: 90%; }
h1 { font-size: 20px !important; }

span { font-size: 12px !important; }

}