@import url("https://fonts.googleapis.com/css?family=Nunito+Sans");

:root {
  --black: #0e0620;
  --white: #fff;
  --blue: #002c8a;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-family: "Nunito Sans";
  color: var(--black);
  font-size: 1em;
}

.container {
  display: flex;
  width: 100%;
}

.align-self {
  box-sizing: border-box;
  width: 50%;
  height: 600px;
}

.con-left {
  padding: 5% 2% 5% 5%;
  text-align: end;
}

.con-right {
  padding: 5% 5% 5% 2%;
  text-align: start;
}

button {
  font-family: "Nunito Sans";
}

ul {
  list-style-type: none;
  -webkit-padding-start: 35px;
  padding-inline-start: 35px;
}

svg {
  visibility: visible;
  height: 100%;
}

h1 {
  font-size: 4.5em;
  margin: 15px 0px;
  font-weight: bold;
}

h2 {
  font-weight: bold;
}

.btn {
  z-index: 1;
  overflow: hidden;
  background: transparent;
  position: relative;
  padding: 8px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 2px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  font-weight: bold;
  margin: 5px 0px;
}

.btn.blue {
  border: 2px solid var(--blue);
  color: var(--black);
}

.btn.blue:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--blue);
  z-index: -1;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.btn.blue:hover {
  color: var(--white);
  background: var(--blue);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.btn.blue:hover:before {
  width: 100%;
}

@media screen and (max-width: 768px) {

  .container {
    flex-direction: column;
  }

  .align-self {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .btn {
    padding: 6px 28px;
  }
  .btn.blue {
    color: var(--white);
    background: var(--blue);
  }
}