html, body {
    margin: 0;
    min-height: 100%;
    height: 100%;
    position: relative;
}

body {
    background-color: rgb(29, 28, 33);
    overflow: hidden;
    transition-delay: 0s, 0s, 0s;
    transition-duration: 0s, 0.5s, 0s;
    transition-property: background-color, all, all;
    transition-timing-function: ease, ease, ease;
}

.background-image {
    width: 110%;
    height: 110%;
    left: 0;
    top: 0;
    position: absolute;
    background: url(background_stripes.png) no-repeat left center / cover;
    z-index: -1;
    transition: transform 0.07s;
}

.nav-link {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 28px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
}

.active {
    color: rgb(252, 97, 0);
}

.nav-link:hover {
    color: rgb(255, 125, 45) !important;
    transition: color 0s !important;
    cursor: pointer;
}

.active:hover {
    color: rgb(252, 97, 0);
}

.mode-switch {
    color: white;
    transition: color 1s;
}

.dark-mode {
    color: rgb(255, 255, 255);
}

.light-mode {
    color: rgb(59, 58, 62);
}

h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 40px;
}

h4 {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: rgb(252, 97, 0);
    margin-top: 10px;
    margin-bottom: 10px;
}

h5  {
    padding-left: 10px;
    align-self: flex-end;
    font-weight: 200;
    font-family: "Outfit", sans-serif;
}

a {
    color: white;
    transition: none;
}

a:hover {
    color: rgb(255, 125, 45);
    transition: none;
}

li {
    padding-top: 5px;
    padding-bottom: 5px;
}

ul, ol, p {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 20px;
}

header {
    margin-top: 20px;
    margin-bottom: 100px;
}

code {
    font-weight: 200;
    font-size: 12pt;
}

.code-section {
    border-radius: 10px;
    margin-top: 10px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 15px;
    background-color: rgb(176, 175, 175);
}

.darkmode-switch-encl {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    height: 80px;
    width: 90px;
    display: flex;
    flex-wrap: wrap;
}

.darkmode-switch-frame {
    position: absolute;
    background-color: lightgrey;
    height: 40px;
    width: 90px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    cursor: pointer;
}

.darkmode-switch {
    position: absolute;
    margin: 5px;
    left: 3px;
    width: 30px;
    border-radius: 15px;
    height: 30px;
    background-color: rgb(59, 58, 62);
    transition: left 1s;
}

.encl {
    display: flex;
    align-items: center;
    background-color: transparent;
    flex-direction: column;
}

.Home {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
    flex-direction: column;
    visibility: visible;
}

.About, .Download {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
    flex-direction: column;
    visibility: hidden;
}

.about-frame, .download-frame {
    border-radius: 30px;
    width: 95%;
    background-color: rgb(59, 58, 62);
    color: white;
    transition: background-color 1s;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}

main {
    position: relative;
    background-color: aqua;
    width: 70%;
}

.app-frame {
    background-color: rgb(59, 58, 62);
    height: 350px;
    width: 350px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#widget-pic {
    border-radius: 50px;
    box-shadow: 2px 2px 5px black;
}

#api-logo {
    margin-top: 20px;
}