@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

html, body{
    background-image:url("assets/bg.webp");
    background-attachment:fixed;
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    overflow-x:hidden;
    background-color:#080f48;
}

*{
    margin:0;
    padding:0;
    color:#FFF;
    font-family: 'Outfit', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight:150;
    line-height:1em;
}

#header{
    display:flex;
    width:100vw;
    height:100vh;
    padding:40px;
    box-sizing:border-box;
    align-items:center;
    justify-content:center;
}

h1{
    font-size:50px;
}

p{
    font-size:20px;
}

.indent{
    text-indent:50px;
}

.paragraph{
    width:100vw;
    padding:40px;
    box-sizing:border-box;
    border:none;
}

.img{
    width:80vw;
    max-width:800px;
    border:none;
    border-radius:10px;
}

.center{
    text-align:center;
}