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

body {
    overflow-x: hidden;
    background-color: #424242;
    font-family: 'Manrope', sans-serif;
}

.footer {
    background-color: #1A1A1A;
    padding: 20px;
    text-align: right;
    color: white;
}

.cardImg {
    width: 100%;
    height: auto;
    border-radius: 35px;
    padding: 30px;
}

.rightImg {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 35px;
    padding: 30px;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 70px;
    height: 70px;
    font-family: 'Manrope', sans-serif;
    background-color:  #00C3FF;
}

.logo {
    color: #ffffff; /* off white for not so harsh contrast */
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 28px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}                                

.nav-links li { /* li targets links */
    list-style: none;
}

.nav-links a { /* a targets the text itself */
    color:#ffffff;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}

.burger {
    display: none;
    cursor: pointer;
    align-items: center;
}

.burger div { /* targets only the divs */
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;

}

@media screen and (max-width: 1024px){
    .nav-links {
        width: 60%;
    }

}

.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
} 


@media screen and (max-width:768px){
    body{
        overflow-x: hidden; /* hides the overflowed content like the transform */
        
    }
    .nav {
        position: relative;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 250px;
        max-height: 250px;
        top: 70px;
        background-color:#8A8A8A;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 200px;
        transform: translateX(100%); /* Moves container off screen but scrolls */
        transition: transform 0.5s ease-in-out;
        border-radius: 0px 0px 0px 15px;
    }
    .nav-links li {
        opacity: 0;

    }
    .burger {
        display: block;

    }
    
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 5px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px, -5px);
}


h1 {
    font-weight: bold;
}

h2 {
    font-weight: normal;
}

h3, h4, h5 {
    font-weight: lighter;
}
  

  
  /* Add a card effect for articles */
.card { /* code for normal content box/card */ 
    overflow-x: hidden;
    background-color: #fafafa;
    margin-top: 30px;
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 10px;
    padding: 50px;
    border-radius: 5px;
} 

.cardBottom { /* code for bottom most content box/card */ 
    overflow-x: hidden;
    background-color: #fafafa;
    margin-top: 5px;
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 30px;
    padding: 50px;
    border-radius: 5px;
}

.cardContact { /* code for contactpage/middle content box/card */ 
    overflow-x: hidden;
    background-color: #fafafa;
    margin-top: 30px; /* kind of like padding but for each side */
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 30px;
    padding: 50px;
    border-radius: 5px; /* rounds the edges by 5px */
}

.cardContact h2, h3 { /* this sets the text align of all h2, h3 elements in each cardContact div*/
    text-align: Center;

}

.card h2, h3, p { /* this sets the text align of all h2, h3 and p elements in each card div*/
    text-align: center;

}

.cardBottom h2{ /* this sets the text align of all h2 elements in each cardBottom div*/
    text-align: center;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
  }

  /* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
    float: left;
    width: 70%;
  }
  
  /* Right column */
.rightcolumn {
    float: right;
    width: 30%;
    background-color: inherit;
    padding-left: 0px;
}

@media screen and (max-width: 800px) { /* merges the columns into one line for mobile */
    .leftcolumn, .rightcolumn {   
      width: 100%;
      padding: 0;
    }
}