@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font: 400 1em "Open Sans", Arial, Helvetica, sans-serif;
    background-color: #010118;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width:100vw;
    min-height: 100vh;
    /* overflow-x: hidden; */
    color: #d8942f;
}

p {
  margin: 15px 0;
}

a {
    text-decoration: none;
    color: #fff;
}
a:hover {
    color: #0f0;
    transition: all 0.5s;
}

h1 {
  text-align: center;
  padding: 35px;
}

header, main, footer {
    width: 50%;
}

section {
  /* width: 100%; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

img {
    height: 150px;
    margin: 15px;
    border-radius: 15px;
}

footer {
  text-align: right;
  position: relative;
  bottom: 0px;
}
