@font-face {
  font-family: 'Satoshi-Variable';
  src: url('./fonts/Satoshi-Variable.woff2') format('woff2'),
       url('./fonts/Satoshi-Variable.woff') format('woff'),
       url('./fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-VariableItalic';
  src: url('./fonts/Satoshi-VariableItalic.woff2') format('woff2'),
       url('./fonts/Satoshi-VariableItalic.woff') format('woff'),
       url('./fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}

* {
    box-sizing: border-box;
    /* outline: solid red; */
}

:root {
    --dark-color: #181818;
    --text-color: rgb(223, 105, 37);
}

h1 {
    font-weight: 900;
    line-height: 1;
    max-width: 490px;
    
}

p {
    font-weight: 300;
}

html {
    background-color: var(--dark-color);
}

body {
    color: var(--text-color);
    color: white;
    text-align: lef;
    font-family: "Satoshi-Variable";
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero {
    font-size: min(20vw, 8rem); 
}

li, ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

a:hover {
    color: bisque;
}

.container {
    max-width: fit-content;
    flex: 1 1 auto;
    margin: 50px;
}

.img {
    max-width: 400px;
    height: 900px;
    z-index: -1;
    flex: 1 1 auto;
}

#alien {
    position: relative;
    left:-150px;
    width: 130%;
    height: 100%;
    object-fit:contain;
}

@media (max-width:900px){
    #alien {
        position: relative;
        left:40px;
        top: -400px;
        width: 80%;
        height: 100%;
        object-fit:contain;
    }
    body {
        flex-wrap: wrap;
    }
}