@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Muli:wght@300&display=swap');

* { /* COLORING */
    --light: #fff;
    --dark: #3e3e3e;
    --darker: #2d2d2d;
    --black: #000000;
    --accent1: #00FFFF;
    --accent2: #DF01A5; 
  }

 

h1 {
    font-family: 'Muli', sans-serif;
    font-size: 35px;
    font-weight: bold;
    margin-top: 20px;
}

nav {
    background-color: rgba(59, 56, 56, 0.5);
    margin-right: 20px;
}

nav a {
    font-size: 25;
    font-family: 'Muli', sans-serif;
    text-decoration: none;
    transition: .3s ease;
}

nav a:hover {
    color: var(--accent2);
}

nav ul li {
    text-align: center;
    list-style-type: none;
    height: 50px;
    width: 300px;
    border: 1px solid #000000;
    line-height: 50px;
    float: right;
    background-color: rgba(59, 56, 56, 0.6);
}

nav ul li:hover {
    color: var(--accent2);
}

h2 {
    font-family: 'Muli', sans-serif;
    font-size: 35px;
    font-weight: bold;
}

h3 {
    font-family: 'Muli', sans-serif;
    font-size: 25px;
    font-weight: bold;
}

h4 {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 45px;
    font-weight: bold;
}

p {
    font-family: 'Muli', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

p1 {
    font-family: 'Muli', sans-serif;
    font-size: 25px;
    font-weight: 500;
}

.box1 {
    width: auto;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    margin-top: 0px;
    display: inline-block;
    padding: 0 20px;
    background-color: rgba(59, 56, 56, 0.5);
}

.box2 {
    border-bottom: 4px solid var(--accent1);
    padding: 1px;
    margin-top: 1px;
    background-color: rgba(59, 56, 56, 0.6);
}

a {
    color: black;
    transition: .3s ease;
}

a:hover {
    color: var(--light)
}

.typewrite {
    color:var(--accent1);
    font-size: 45px;
}

#footer {
    border-top: 4px solid black;
    padding: 5px;
    background-color: rgba(59, 56, 56, 0.6);
    height: 60px;
    margin-top: 50px;
}

html, body { 
    font-family: 'Muli', sans-serif;
    color: var(--black);
    margin: 0; padding: 0; 
    background:url(/../avoblur.jpg);
    background-size: cover;
    background-repeat: none;
    background-position: center;
    background-attachment: fixed;
}

.container { 
    width: 80%; margin: auto;
}

.container2 {
    margin-top: 50px;
}


@media only screen and (max-width: 860px){ .container { width: 95%; margin: auto; } }