@import url('https://fonts.cdnfonts.com/css/jetbrains-mono-2');
@import 'icons.css';

body {
  background-image: linear-gradient(to right, #7e1f8f, #42398f);
  background-repeat: repeat;
  color: white;
  font-family: "JetBrains Mono", monospace;
  text-align: center;
  font-size: 22px;
}

.title {
    list-style-position: inside;
    list-style-image: url("./assets/img/logo-circle.png");
}

.periwinkle {
    color: #b4befe;
}

.mint {
    color: #83c93d;
}

a {
    color: lightblue;
}

header {
    font-size: 40px;
    background-color: #00000026;
    padding: 22px;
}

@keyframes hover {
  from {
    background-color: #00000000;
  }
  to {
    background-color: #ffffff26;
  }
}

@keyframes unhover {
  from {
    background-color: #ffffff26;
  }
  to {
    background-color: #00000000;
  }
}

.navbar {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: #00000040;
}

.navbar-icons {
    float: right;
    margin: 7px;
    width: 45px;
    height: 45px;
    background-color: #00000000;
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 14px;
}

.navbar-icons:hover {
    animation: hover;
    animation-duration: 0.45s;
    background-color: #ffffff26;
}

.textbox {
    background-color: #00000020;
    width: 800px;
    padding: 15px;
    margin: 20px;
    border-radius: 20px;
    align-content: center;
    display: block;
    text-decoration: none;
}

.navbar {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: #00000040;
}

.navbar-icons {
    float: center;
    margin: 7px;
    display: block;
    padding: 14px 16px;
    text-decoration: none;
}

.bulletpoints {
    text-align: left;
}

.section-title {
    list-style-position: inside;
}

footer {
    height: 23px;
    background-color: #00000026;
    padding: 21px;
    position: bottom;
}