* {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: #c8d3f5;
    text-align: center;
}

body {
    background-color: #282a36;
}

img {
    padding-top: 2rem;
    width: 10rem;
    height: auto;
}

navbar {
    position: fixed;
    display: flex;
    align-items: center;
    padding: .75rem 2rem;
    color: #FFF;
    top: 0.5rem;
    margin-bottom: 4rem;
    margin-top: 1rem;
    background: rgba(44,44,44,0.7);
    width: 50vw;
    margin-left:25vw;
}

navbar a, .dropdown {
    float:left;
    display: block;
    text-align: center;
    color: #FFF;
    margin: 0 2rem;
}
  
.dropbtn {
    color: #FFF;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 8rem;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 1;
    background: rgba(44,44,44,1);
}

.dropdown-content a {
    display: block;
    text-align: left;
    margin: 0;
    padding: .5rem 1rem;
}

.dropbtn:hover {
    scale: .95;
    color: #9c45b9;
    transition-duration: .5s ease;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}


.RoundedRect {
    border-radius: 2rem;
    border: 2px solid #FFF;
    padding: .5rem 1rem;
    margin-left: auto;
    margin-right: 0;
    transition: background-color 0.5s ease, 
    color 0.5s ease, 
    transform 0.5s ease;
}

.RoundedRect:hover {
    background-color: #FFF;
    color: #222436;
}

a:hover {
    scale: .95;
    color: #9c45b9;
    transition-duration: .5s ease;
}

.hero {
    display: flex;
    flex-direction: column;
    height: 45rem;
    width: 100vw;
    top: 0;
    z-index: -1;
}

.heroheader {
    width: 45%;
    margin: 20rem 10rem;
    display: block;
}

.threebox {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: 30rem;
    background-color: #3a3d5c;
}

.box {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 2rem;
}

.txtSmaller {
    font-size: 1.25rem;
}

.txtSmall {
    font-size: 1.5rem;
}

.txtMedium {
    font-size: 2rem;
}

.txtLarge {
    font-size: 5rem;
}

.Bolden {
    font-weight: 800;
}

.leftAlign {
    text-align: left;
    padding-left: 1rem;
}

.topSpace {
    margin-top: 2rem;
}

.textWhite {
    color: #FFF;
}