@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Gotu&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100vh;
    width: 100vw;
}

body {
    background-color: hsl(0, 0%, 9%);
    font-family: 'Gotu';
    font-size: 18px;
}

header {
    background-color: black;
    background: url(/images/bg_header_0001.png);
    background-size: cover;
    border-bottom: 4px solid hsl(215, 100%, 30%);
    box-shadow: 0 -25px 40px 40px hsl(215, 100%, 15%);
    color: red;
    height: 200px;
    position: relative;
    width: 100%;
    z-index: 10;
}

#title {
    background: linear-gradient(hsl(215, 100%, 35%), hsl(215, 100%, 70%));
    color: white;
    font-family: 'Aldrich';
    font-size: 72px;
    height: max-content;
    left: 50%;
    position: relative;
    filter: drop-shadow(0 2px 4px hsla(215, 100%, 5%, 0.75));
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

main {
    background-color: black;
    background: url(/images/bg_main_0001.png);
    background-size: cover;
    bottom: 0;
    color: hsl(0, 0%, 80%);
    position: absolute;
    top: 200px;
    width: 100%;
}

#container {
    margin: 0 auto;
    position: relative;
    top: 50px;
    width: 950px;
}