@charset "UTF-8";
:root {
    --yellow-color: rgb(250, 230,56);
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: black;
}
.mo_grid_12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.mo_grid_l3_1 {
    grid-column: 1/4;
}
.mo_grid_l3_2 {
    grid-column: 4/7;
}
.mo_grid_r3_1 {
    grid-column: 7/10;
}
.mo_grid_r3_2 {
    grid-column: 10/13;
}
.mo_grid_l4_1 {
    grid-column: 1/5;
}
.mo_grid_l4_2 {
    grid-column: 5/9;
}
.mo_grid_l4_3 {
    grid-column: 9/13;
}
.main_right_1{
    grid-column: 12/13;
    /* border: 1px solid red; */
    
} 
a {
    text-decoration: none;
    color: #000;
}
#mo_nav {
    background-color: var(--yellow-color);
    min-height: 200px;
    position: -webkit-sticky;
    position: sticky;
    top:0;
    opacity: .9;
}
#mo_nav:hover {
    opacity: 1;
}
#mo_nav ul {
    grid-column: 9/13;
    list-style: none;
    justify-self: end;
    margin-top: 30px;
    margin-right: 1.5em;
    padding-left: 1em;;
    
}
#mo_nav ul li {
    display: inline;
    margin-left: 1em;
}
li:hover a {
    transition: 1.2s;
    transition-property:all;
    color: rgba(42, 85, 29, 0.781);
    vertical-align: top;
    text-shadow: 2px 2px 5px rgba(13, 49, 13, 0.651);
}
.background-text {
    background-image: url("../images/PHOTO-2020-07-13-19-02-18.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    min-height: 650px;
    grid-column: 3/11;
}

.main_right_1 a {
    margin-left: 2.5em;
}
.main_right_1 a i {
    color: var(--yellow-color);
    text-shadow: 2px 2px 5px black;
    position: sticky;
    top: 220px;
    margin: auto;
    opacity: .9;
}
.main_right_1 a:hover  i{
    animation: mo 1.2s 0.3s 1 ease;
      
}
footer {
    color: var(--yellow-color);
    min-height: 380px;
    opacity: .6;
}
footer a {
    color: var(--yellow-color)!important;
    margin-left: 0.7em;
}
#mo_footer_about h1 {
    text-align: center;
    margin-top: 0;
    font-weight: bolder;
    font-size: 2em;
    opacity: .7;
}
#mo_footer_about p {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
#social_media {
    padding-left: 2em;
    /* padding-top: 2em; */
}
@keyframes mo {
    0% {
      transform: translateY(-0.1em);
    }
    50% {
        transform: translateY(-2.5em);
        color: black;
    }
    
    100% {
        transform: translateY(0);
    }
  }

  @media only screen and (max-width: 1476px) {
    #mo_nav ul {
        grid-column: 5/13;
    }
    #social_media {
        grid-column: 2/6;
        padding-left: 0;
        padding-top: 30%;
    }
    #mo_footer_about {
        grid-column: 7/12;
    }
  }
  @media only screen and (max-width: 965px) {
    #main_mail {
        grid-column: 11/12;
        grid-row: 1;
    }
    #social_media {
        grid-row: 2;
        grid-column: 1/13;
        display: flex;
        justify-content: center;
        padding-top: 1em;
    }
    #mo_footer_about {
        grid-row: 1;
        grid-column: 2/12;
    }
    .background-text {
        min-height: 350px;
        padding-top: 200px;
    }
    #mo_nav {
        min-height: 140px;
    }
}
@media only screen and (max-width: 747px) {
    #mo_navicon{
        background-color: var(--yellow-color);
        min-height: 100px;
        position: -webkit-sticky;
        position: sticky;
        top:0;
        opacity: .9;
        /* width: 100%; */
    }
    #mo_navicon a {
        justify-self: end;
        align-self: center;
        grid-column: 9/12;
    }
    #mo_nav {
        display: none;
    }
    .main_right_1 a:hover  i{
        animation: none;
          
    }
    #main_mail {
        grid-column: 1/12;
        grid-row: 1;
        justify-self: end;
        padding-top: 20px;
        z-index: -1;
    }
    #social_media {
        grid-row: 1;
        grid-column: 1/13;
        display: flex;
        justify-content: center;
        padding-top: 1em;
    }
    #mo_footer_about {
        grid-row: 2;
        grid-column: 2/12;
    }
}
    
@media only screen and (max-width: 747px) and (max-height: 736px){
    .background-text {
        min-height: 320px;
        padding-top: 180px;
    }
}
@media only screen and (max-width: 747px) and (max-height: 668px){
    .background-text {
        min-height: 280px;
        padding-top: 150px;
    }
}
@media only screen and (max-width: 747px) and (max-height: 641px){
    .background-text {
        min-height: 250px;
        padding-top: 150px;
    }
}
  