:root {
    --main-bg-color: #1a1919;
    --navbar-color: #333344;
    --primary-color: #da5959;
    --secondary-color: #ffb380;
    --main-hover-color: #44baff;
    --desc-text: #e4e0d1;
    --desc-secondary-color: #b3b3b3;

}

html {

    font-size: 32px;
    color: #fff;

}

* {

    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {

    background-color: var(--main-bg-color);
    min-height: 100vh;

}

.nav_links * {

    text-decoration: none;
    font-size: 0.5rem;

}

a {

    text-decoration: none;

}

header {

    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding: 3px 5%;
    background-color: var(--navbar-color);

}

.si_logo {
    
    margin-bottom: auto;
    margin-right: auto;
    cursor: pointer;
    max-width: 50px;
    max-height: 50px;

}

.nav_menu_toggle {

    margin-bottom: auto;
    margin-right: auto;
    cursor: pointer;
    max-width: 50px;
    max-height: 50px;
    display: none;
    background-color: transparent;
    border: 10px;
    
}
    
.nav_menu_toggle:focus {

    outline: none;
  
}

.nav_links li {

    display: inline-block;
    margin: 10px;

}

.nav_links li a {

    color: #dbdad7;
    transition: all 0.3s ease 0s;

}

.nav_links li a:hover {

    color: var(--primary-color);

}

.contact_btn {

    padding: 9px 25px;
    margin: 0px 12px;
    background-color: var(--primary-color);
    border:none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;

}

.bg-dark{ 

    background-color:#343a40

}

.contact_section {

    color: #fff;
    padding: 12px;
    margin-bottom: 32px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3px 5%;

}

.contact_section * {

    display: inline-block;

}

.contact_section h1 {

    margin-top: 24px;

}

.contact_section p {

    margin-top: 12px;
    margin-left: 52px;

}

.link {

    text-decoration: none;
    color: #44baff;

}

.about-footer {

    color: #fff;
    font-size: 20px;
    position: sticky;
    top: 100%;
}

footer {

    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-hover-color);
    padding: 12px;
    color: #1a1919;

}

footer * {

    font-size: 0.8rem;

}

footer button {

    margin: 4px;
    margin-left: 22px;
    padding: 9px 22px;
    background-color: var(--primary-color);
    border:none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;

}

/* keep it at the end of the file */

@media (max-width: 600px) {

    /* top nav bar */

    nav ul {
        
      display: none;
      flex-direction: column;
      
    }

    ul li {

        padding: 8px;

    }

    .nav_menu_toggle {

        display: block;
      
    }
    
    nav .show {
        
      display: flex;
      align-items: center;
      padding: 3px 5%;

      .contact_btn {
        
        background-color: transparent;
        margin: 0px;
        padding: 8px;

        }
      
    }

}