*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body{
    background: black;
    color: white;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}
.hero{
    display: grid;
    grid-template-columns: auto 300px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}
.title-img{
    margin: 0 20px;
}
.img-title{
    font-size: 6em;
    font-weight: 900;
}
.title-img img{
    width: 100%;
    height: 100%;
    max-height: 800px;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    
    border-radius: 1rem;
    margin: -5px 0;
}
.text{
    margin: 50px;
}
.para{
    text-transform: uppercase;
}
.text h2{
    margin: 20px 0;
    font-size: 40px;
}
.moon-sun{
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    align-items:center;
    justify-content: center;
    margin: 0 20px;
}
.title-moon h2{
    font-size: 6em;
    display: inline-block;
    line-height: 160px;
}
.title-moon img{
    width: 100%;
    height: auto;
    max-height: 800px;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    
    border-radius: 1rem;
}
.title-sun img{
    width: 100%;
    height: 750px;
    background-size: cover;
    object-fit: cover;
    
    border-radius: 1rem;
}
.num h2{
    font-size: 30px;
}
.secinfo{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
.num h2{
    margin: 0 20px;
    line-height: 30px;
}
.para-info h2{
    font-size: 30px;
    margin: 20px 0 0 0;
    line-height: 30px;
}
.secinfo{
    margin: 0 0 20px 0;
}
.about-mesection{
    display: grid;
    grid-template-columns: auto 1000px;
    align-items: center;
    justify-content: center;

    margin: 0 20px;
}
.about-info{
    margin: 20px 0px;
    width: 350px;
}
.about-info h2{
    font-size: 6em;
    display: inline-block;
}
.about-info p{
    margin: 0 20px;
}
.aboutmeimg{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}
.aboutmeimg img{
    width: 100%;
    max-height: 800px;
    background-size: cover;
    object-fit: cover;
    margin: 0 0 50px 0;
    border-radius: 1rem;
}

@media (max-width: 1200px) {
    .hero,
    .moon-sun,
    .about-mesection {
        grid-template-columns: 1fr;
    }
}