a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #161822;
    font-family: 'IBM Plex Sans', sans-serif;
}

.navbar .selected {
    color: #ffffff;
}
.header .name {
    color: #ffffff;
    font-weight: 700;
    font-size: 32;
}
.navbar a {
  color:#ffffffbf;
  font-size: 24px;
  padding: 20px
}

.header {
    display: inline-block;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.header * {
  padding: 20px
}

@media screen and (min-width: 1215px) {
  .mobile-view {
    display: none;
  }
}



/* For mobile screens */
@media screen and (max-width: 1215px) {
    body {
        background-color: #161822
    }
    .header .name {
        font-size:30px;
        top: 5px;
        left: 20px;
        display: none;
    }
    .header {
       font-size: 10px;
       position: absolute;
       top: 10px;
       display: flex;
       width: 90vw;
    }
    .header img {
        margin: 0px;
        padding: 0px;
        justify-content: center;
    }
    .navbar {
        position: absolute;
        width: 100px
    }
    .navbar li {
        position: relative;
        top: 200px;
        left: 00px;
        margin: 00px;
        padding: 8px
    }
    .introbox .hero-text {
        position: absolute;
        top: -70px;
        left: -40px;
        width: 80vw;
        height:min-content;
    }
    .introbox .hero-subtext {
        position: relative;
        top: 130px;
        left: -40px;
        width: 80vw;
    }
    .introbox div {
        width: 70vw
    }
    .desktop-view {
        display: none;
    }
}

@media (min-width: 383px) and (max-width: 647px) {
    .introbox .hero-subtext {
        position: relative;
        top: 70px;
        left: -40px;
        width: 80vw;
    }
}
@media (min-width: 648px) and (max-width: 1215px) {
    .introbox .hero-subtext {
        position: relative;
        top: 0px;
        left: -40px;
        width: 80vw;
    }
}


.hero img {
    top: 0px;
    object-fit: cover;;
    height: max;
    z-index: -2;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100vh;
}
.gradient {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100vh;
    width: 100vw;
    background: radial-gradient(circle, rgba(37,40,51,0.75) 35%, #161822 100%);
    z-index: -1;
}

.header div {
    display: flex;
    
}

.header div img {
    padding: 20px;
}

.header div h1 {
    top: 20px;
}

.name {
    left: 5%;
    padding-top: 2%;
    position: relative;
}

ul > li {
    display: inline-block;
    /* You can also add some margins here to make it look prettier */
}

.header .button {
    color: white;
    background-color: #3B3E48;
    font-size: 20;
    padding: 15px;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.highlighted-button {
    background-color: #00A0D4;
    color: white;
    font-size: 20;
    padding: 15px;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.introbox {
    top: 520px;
    left: 75px;
    position: absolute;
    display: flex;
    justify-content: space-evenly;
}

.hero-text {
    top: 20px;
    color: #00A0D4;
    font-size: 48px;

}

.hero-subtext {
    color: white;
    font-size: 32px;
}

@media screen and (max-width: 2100px) {
    .introbox .button {
        display: none;
    }
}

.introbox .button {
    background-color: #00A0D4;
    color: white;
    font-size: 20;
    padding: 15px;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
    position: absolute;
    left: 80vw;
    width:max-content;
    align-self: flex-end;
}

.introbox .button img {
    margin-left: 20px
}

.introbox .button a {
    color: white;
    font-weight: 700;
    font-size: 32px;
    
}