@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body{
    font-family: 'Rubik',sans-serif;
    background: #f4f4f4;
    padding: 40px;
    font-size: 26px;
    background-color:dimgray;
}
h2{
    font-family: 'Archivo Black',sans-serif;
    margin: 30px 0 15px;
}
.container{
    max-width: 1200px;
    margin: auto;
}
.nav{
    list-style: none;
    display: flex;
    justify-content: space-between;
    background-color: #121212;
    margin: 0 auto;
    padding: 10px;
    font-weight: 500;
}
.nav a{
    font-size: 30px;
    text-decoration: none;
    color:#f5f1e8;
    padding: 40px 20px;
    
}
.nav a:hover{
    color: #d82f2f;
}

.custom-bullets{
    list-style-type:square;
}

.outline{
    list-style-type: upper-roman;
    margin-left: 20px
}
.outline ol{
    list-style-type: lower-alpha;
}

.links{
    display: flex;
    flex-direction:row;
    padding: 20px 10px;
    justify-content: space-between;
    align-items: center;
    
}
.text-link{
    color: blue;
    text-decoration:none;
    font-size: 20px;
}
.text-link:hover{
    color: darkblue;
    text-decoration: overline;
}
.btn-filled{
    background: black;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    width: fit-content;
    font-size: 20px;
    font-weight:600;
    
}
.btn-filled:hover{
    background: orange;
    color: black;
}
.btn-outlined{
    border: 5px solid black;
    padding: 10px 15px;
    text-decoration: none;
    color: darkred;
    width: fit-content;
    font-size: 20px;
    font-weight:600;
}
.btn-outlined:hover{
    background: darkred;
    color: black;
}
.btn-dotted{
    text-decoration: none;
    color:white;
    padding: 10px 15px;
    background:teal;
    width: fit-content;
    border-radius: 20px;
    font-size: 20px;
    font-weight:600;
}
.btn-dotted:hover{
    background: white;
    color: teal;
    border: 5px dotted black;
}
.btn-glow{
    text-decoration: none;
    color: orange;
    background: brown;
    padding: 10px 15px;
    width: fit-content;
    border-radius: 15px;
    font-size: 20px;
    font-weight:600;
}
.btn-glow:hover{
    background: orange;
    color: brown;
    box-shadow: 0 0 20px brown;
}
