@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;700;900&family=Indie+Flower&display=swap");
@import url(nordtheme.css);

body {
    background-color: var(--main-background);
    font-family: 'Poppins', sans-serif;
    color: var(--main-text);
    font-weight: 200;
}

a {
    color: inherit; /* no color */
    text-decoration: inherit; /* no underline */
}

a:hover {
    color: var(--main-accent);
}

h1 {
    font-weight: 300;
    margin-bottom: 0px;
}

h2 {
    font-weight: 200;
}

h3 {
    margin-top: 0px;
    margin-left: 10px;
    font-weight: 300;
}

h5 {
    font-weight: 200;
    font-size: 16px;
}

.container {
    margin: 50px 50px;
}

.alert {
    color: var(--main-alert);
}

.subText {
    font-family: 'Indie Flower', sans-serif;
}

button {
    cursor: pointer;
    outline: 0;
    color: #fff;
    background-color: var(--alternate-blue);
    border-color: var(--alternate-blue);
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
  
button:hover {
    color: #fff;
    background-color: var(--alternate-light-blue);
    border-color: var(--alternate-light-blue);
}