@font-face {
    font-family: "Outfit regular";
    src: url('../fonts/Outfit-Regular.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: "Outfit Semibold";
    src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
    font-display: swap;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: 	border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}
.cf{zoom: 1;}
.cf:before, .cf:after { content: ""; display: table; }
.cf:after { clear: both; }

html{
    overflow-y: scroll;
	scroll-behavior: smooth;
    min-height: 100%;
}
::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
body{
    background: transparent url(../images/cobra-design-bg.jpg) 77% 50% / cover no-repeat;
    width: 100vw;
    height: 100vh;
    font-family: "Outfit regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5em;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content {
    display: block;
    width: 100vw;
    padding: 30px;
}
h1{
    display: block;
    max-width: 760px;
    width: 100%;
    margin: 0;
    position: relative;
}
h1:before{
    content: "";
    display: block;
    padding-top: 44%; 
}
h1 span{
    background: transparent url(../images/cobra-design-logo-w.svg) 0 0 / contain no-repeat;
    text-indent: -99999px;
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
ul{
    list-style: none;
    margin: 87px 0 0;
    padding: 0;
}
ul li{
    margin: 0;
    padding: 2px 0;
}
a{
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Outfit Semibold",  "Outfit regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
    float: right;
    display: block;
    margin-top: 87px;
}

@media only screen and (min-width: 468px) {
    body{
        font-size: 19px;
    }
    a{
        font-size: 19px;
    }
}
@media only screen and (orientation: landscape) {
    body{
        display: block;
    }
}
@media only screen and (min-width: 768px) {
    .content {
        padding: 30px 40px;
    }
}
@media only screen and (orientation: portrait) and (min-width: 768px) {
    body{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .content {
        padding: 30px 40px;
    }
}
@media only screen and (min-width: 1024px) {
    body{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .content {
        padding: 30px 60px;
    }
}
@media only screen and (min-width: 1200px) {
    body{
        font-size: 24px;
    }
    .content {
        padding: 30px 150px;
    }
    ul{
        float: left;
    }
    a{
        margin-top: calc(87px + 87px);
        font-size: 20px;
    }
}
@media only screen and (min-width: 1600px) {
    ul{
        margin: 200px 0 0 400px;
    }
    a{
        margin-top: calc(200px + 87px);
    }
}