html, body{
    background-color: #111216;
    color: white;
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "sans-serif";
}

.content-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
	
	position: relative;
	overflow: hidden;
}

.content-wrapper::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:100%;
	
	background-image: radial-gradient(circle, #38b6ff 1px, transparent 1px);
	background-size: 25px 25px;
	opacity: 0.25;
	z-index: 0;
}

.content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50vw;
    justify-content: center;
    text-align: center;
	z-index: 5;
}

@media(max-width: 768px){
    .content-container{
        width: 90vw;
    }
    
    .text-wrapper{
        margin-top: 0 !important;
    }
}

img{
    width: 75vw;
    height: auto;
    max-width: 450px;
    min-width: 200px;
}

.text-wrapper{
    margin-top: 3vh;
    text-align: center;
}

h1{
    font-size: 3em;
    margin-bottom: 0;
}

p{
    margin: 0;
}