/*Global Styles*/
body{
    background-color:#F2F2F2;
    margin:0;
    font-family:Georgia, 'Times New Roman', Times, serif;
}


header{
    background:#F2F2F2;
    border-bottom: 1px solid #3D5266;
}

.logo{
    align-items: center;
    width: 80px;
    height:80px;
}

.page-title{
    text-align: center;
    margin-top:10px;
    color: #3D5266;
}

.sub-heading{
    font-weight:lighter;
    text-align: center;
    margin-top: -10px;
    font-size: 20px;
    color:#3D5266;
}
.center-pic {
    padding-top: 2px;
    max-width: 100%;
    height:auto;
    padding:5%;
}

.ai{
    margin-bottom:0px;
    margin-top:-15px;
    text-align: center;
    font-size: 5%;
}

.page-intro{
    display:flex;
    flex-direction: column;
}

.page-body{
    display:flex;
    justify-content: center;
}
.firstplace{
   color:#3D5266;
   text-align: center;
   margin-top:-30px;
   padding:5%;
}

.firstplace:hover{
    filter: grayscale();
    transition: .4s;
}

.reference{
    margin-bottom:0px;
    margin-top:-15px;
    text-align: center;
    font-size: 5%;
}
.secondplace:hover{
    filter: grayscale();
    transition: .4s;
}

.thirdplace:hover{
    filter: grayscale();
    transition: .4s;
}

.secondplace{
    color:#3D5266;
   text-align: center;
   padding:5%;
   margin-top:-30px;
}

.thirdplace{
    color:#3D5266;
   text-align: center;
   margin-top:-30px;
   padding:5%;
}

p{
    text-decoration: none;
    color:#3D5266;
    line-height:normal; 
}

.omy-body{
    padding:5px;
}
a{
    text-decoration: none;
    color:#3D5266;
    font-size: large;
    font-weight: bold; 
}

img{
    max-width: 100%;
    height:auto;
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
}

@keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
nav{
    display:flex;
    align-items: center;
    justify-content:space-between;
    font-size: small;
    padding:5%;
}

.burger{
    font-size:20px;
    color: #3D5266;
}

.desktop-menu{
    display:none;
}

.journal-title {
    text-align: center;
}

main{
    display:flex;
    flex-direction: column;
    margin:8px;
}

.conclusion{
    text-align: center;
}

/*offscreen nav*/
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    background-color: #3D5266;
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #F2F2F2;
    display: block;
    transition: 0.3s;
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }
/*MACBOOK PRO*/
  @media screen and (min-width:1366px) {
    .desktop-menu{
        display:contents;
    }

    .sidenav {
        display:none;
    }

    .burger{
        display: none;
    }

    .menu-item{
        font-size:20px;
    }

    .center-pic{
        padding:0%;
    }

    .firstplace{
        margin-top:-80px;
    }

    .secondplace{
        margin-top: -120px;
    }

    .thirdplace{
        margin-top:-120px;
    }

    .conclusion{
        margin-top:-60px;
    }

    .logo{
        width: 120px;
        height:120px;
    }

    .profile-icon{
        font-size:50px;
    }

    .box-title{
        font-size: 30px;
    }

    /*i can't figure out why the nav isn't automatically in the same layout as mobile but without the burger? I don't think it looks weird but i wish the logo was still in the middle*/
  }
    
  