*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
    box-sizing: border-box;
    margin: auto;
  }

body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #FFFFFF;
}

div.topnav{
    display: flex;
    justify-content: space-between;
    background-color:#FBA90A;
    /* margin: 2em; */
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 1em;
    padding-right: 1em;
    /* position: fixed; */
    

}

div.topnavlogo{
    display: flex;
    align-items: center;
    /* background-color: #D4DAF7; */
}

.topnavlogo a{
    text-decoration: none;
    color: #3553E9;
}


div.nav-links{
    display: flex;
    align-content: center;
    align-items: center;
    /* border: solid red 2px; */
    /* padding-top: 50px; */
    /* background-color: green; */
    /* justify-content: center; */
    /* align-content: center; */
    /* align-self: center; */
}

.navitem{
    color:#3553E9;
    padding: 1em 1em;
}
.nav-links a{
    /* margin: 2em; */
    /* background-color: #D4DAF7; */
    text-decoration: none;
    
}

.icon
{
    height: 2em;
    width: 2em;
}

div.intro{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 10em;
    background: -webkit-linear-gradient(rgb(48, 103, 206), rgb(121, 34, 99));
    /* background-color: #7D91F7; */
    /* border: solid red; */
}

div.intro-item{
    text-align: center;
}

div.intro-item i{
    background: -webkit-linear-gradient(rgb(226, 162, 24), rgb(121, 34, 99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

div.intro h1{
    align-items: center;    
    /* align-items: flex-end; */
    /* align-content: flex-end; */
    /* justify-content: flex-end; */
    color: #FFFFFF;
    /* border: solid red; */

}

div.intro i{
    font-size: 10em;
    color: #fff;
    /* border: solid red; */
}

div.container{
    background-color: #eff4f7;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: flex-start;
    align-items: flex-start;
    /* align-self: center; */
    gap:20px;
    /* grid-auto-flow: row; */
    /* flex-direction: row; */
    /* flex: 1; */
    padding: 5em;
    /* border: solid red; */
    box-sizing: border-box;

}

div.grid-item{
    /* display: flex; */
    flex-direction: column;
    /* border: solid red; */
    /* align-items: center; */
    height: 100%;
    /* width: auto; */
    text-align: center;
    flex: 1;
    /* border: solid red; */

}

div.grid-item i{
    /* font-size: 10em; */
    height: auto;
    font-size: 6em;
    background: -webkit-linear-gradient(rgb(48, 103, 206), rgb(121, 34, 99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
}

div.footer{
    display: flex;
    background-color: #0D1749;
    justify-content: flex-end;
    padding-right: 2em;
    /* position: fixed; */
    bottom: 0;
    left: 0;
    width: 100%;
}

div.footer a{
    font-size: .75em;
    color: #FDCE6F;
    text-decoration: none;
}