:root {
  --hero-background-color: #000;
  --background-image-color: #1250aa;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.woff2);
}

@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins.woff2);
}

body {
  font-family: "Poppins";
  font-size: 3vmin;
}

a {
  position: relative;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #d2d2d2;
  letter-spacing: 0.5px;
}
a:after {
  content: "";
  position: absolute;
  background-color: #b0d4ff;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: 0.3s;
}
a:hover {
  color: #ffffff;
}
a:hover:after {
  width: 100%;
}

#cord {
  display: none;
}

#hero {
  height: 100vh;
  width: 100%;
  margin: 0;
  color: cornsilk;
  background-color: var(--hero-background-color);
  background-image: radial-gradient(
    circle farthest-side at var(--x, 100px) var(--y, 100px),
    var(--background-image-color) 0%,
    transparent 100%
  );
}

.title {
  font-family: "Poppins-Bold";
  text-transform: uppercase;
  font-size: 10vmin;
  margin: 15% 0 0 0;
  line-height: 95%;
}

#col1 {
  width: 100%;
  padding: 5% 0;
  box-sizing: border-box;
  display: flex;
}

#content-1 {
  margin: auto;
  padding: 10px;
}

#col2 {
  width: 100%;
  box-sizing: border-box;
  display: flex;
}

#content-2 {
  margin: auto auto auto 10%;
  padding: 10px;
}

li {
  list-style: none;
  padding: 10px 0;
}

h4 {
  margin: 25px 0 -10px 0;
}

#list {
  padding: 3px 0 0 35px;
}

@media (min-width: 550px) {
  #col1 {
    flex: 50%;
    padding:0;
  }
  
  #col2 {
    flex: 50%;
    padding: 0;
  }
  
  #content-1 {
    margin: 5% 10% auto auto;
  }
  
  #content-2 {
    margin: 5% auto auto 10%;
  }
  
  #cord {
    display: block;
    color: #b6b6b6;
    font-size: 2vmin;
    margin: 0;
  }
  
  .title {
    font-size: 8vmin;
    margin: 7% 0 0 0;
  }

  #hero{
    display: flex;
    justify-content: center;
  }
  
  #list {
    padding-bottom: 15px;
  }

  li {
    padding: 5px 0;
  }

}
