* {
  transition: all 1s ease;
}
  
body * {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "DM Serif Text", system-ui;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: calc(60px + (120 - 60) * ((100vw - 300px) / (1600 - 300)));
    margin: auto;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 20px;
    color: white;
    background: linear-gradient(0deg, rgb(19, 36, 98) 0%, rgb(0,0,0) 100%);
    & section {
        display: flex;
        width: 100%;
        height: 60%;
    }
}


footer {
    background-color: #18181b;
    color: white;
    padding: 10px 0;
    position: sticky;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    & section {
        margin:1em;

        & p {
            margin:0;
            & a {
                color: white;
            }
        }

        &:first-child {
            text-align: left;
        }
        &:last-child {
            text-align: right;
        }
    }
    

}

#page-title {
    text-shadow: 3px 3px 16px #00000040;
  }

.text-black {
    color: black;
}
.text-white {
    color: white;
}