



/* Reset CSS */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove text decoration */
a {
    text-decoration: none;
    color: inherit;
}

/* Custom styles below this line */


.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #03020a;
}
.container img{
    height: 100vh;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.desktop{
   display: none; 
}
@media(min-width: 1100px) {
    .desktop{
        display: block;
    }
    .mobile{
        display: none;
    }
}