*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}

/* HERO SECTION */
.main {
    background-color: #006ae2;
}

.main__container {
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: 90vh;
}

.main__content {
    /* background-color: #000000; */
    color: fff;
    text-align: center;
    margin-bottom: 1rem;
}

#textlogo__img {
    position: center;
    margin-top: 10%;
    height: 50%;
    width: 50%;
}

.main__content h2 {
    background-color: #ffffff;
   text-align: center;
   color: rgb(255, 255, 255);
   font-size: 2.5rem;
   margin-top: 10rem;
   margin-bottom: 2rem;
}


.home__btn {
    font-size: 1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 28px;
    color: rgb(0, 0, 0);
    background-color: #006ae2;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.home__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.home__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #2b2b2b;
    transition: all 0.35s;
    border-radius: 28px;
}

.home__btn:hover {
    color: #131313;
}

.home__btn:hover:after{
    width: 100%
}

.main__img--container {
    text-align: center;
}

#main__img {
    position: center;
    /* margin-top: 5rem; */
    max-width: 100%;
    max-height: 100%;
}

/* FOOTER SECTION */

.footer {
  max-height: 100%;
  background-color: #006ae2;
}

.footer__container {
  background-color: #006ae2;
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    width: 100%;
    /* margin-top: 0 auto; */
    height: 50vh;
}

.footer__content {
  background-color: #006ae2;
    color:#fff;
    text-align: center;
    font-size: .5rem;
    /* padding-top: 1rem; */
}

.footer {
    padding-top: 4rem;
}

.f2 {
    padding-top: 2rem;
}