html {
    font-size: 14px;
}

a {
    text-decoration: none;
}

html body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #272727;
}

body {
    position: relative;
    padding: 0px;
    margin: 0px;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
}

.container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    border-bottom: 5px solid rgb(230, 230, 230);

}

.title {
    width: 100%;
    background-color: #3A3A3A;
    padding-top: 10px;
    border-bottom: 5px solid #707070;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 10px;
    text-align: center;
    text-transform: capitalize;
}

.slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e0e0e0;
}

.content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;

    height: 80px;
    width: auto;
    /* max-height: 60px; */
    max-width: 600px;
    font-size: 1.3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: #b3b3b3 1px solid;
    padding-left: 2px;
    padding-right: 10px;

    text-align: center;
    font-weight: bolder;
    /* border-radius: 4px; */
    /* background-color: rgb(134, 134, 134);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4); */
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    color: white;
}

.content:hover {
    /* -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
    /* background-color: rgba(253, 253, 253, 0.25); */
    -webkit-transform: scale(1.05);
    transform: scale(1.03);
    z-index: 1;
    border-bottom: #80ff00 5px solid;
}

@media (min-width: 600px) and (max-width: 1200px) {
    .slogan {
        font-size: calc(1.8rem + (1.3-1.2) * ((100vw - 600px) / (1200 - 600)));
    }

    .content {
        font-size: calc(1.2rem + (1.3-1.2) * ((100vw - 600px) / (1200 - 600)));
    }
}

@media (min-width: 1200px) {
    .slogan {
        font-size: 2rem;
    }

    .content {
        font-size: 1.5rem;
    }
}

.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;

    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    padding: 5px;


    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    /* border-bottom: #c7c7c7 2px solid; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); */

}

.copyright {

    padding-top: 20px;
    color: white;
    text-align: center;
}


.pic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: linear-gradient(-225deg, #9EFBD3 0%, #57E9F2 48%, #45D4FB 100%);

    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    padding: 2%;
    padding-left: 5%;
    padding-right: 5%;
    border-bottom: #b3b3b3 1px solid;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

}


.p1 {
    display: flex;
    align-items: center;
    height: 30px;
    border-left: #80ff00 solid 1px;
    padding-left: 20px;
    margin-left: 10px;
    transition: all 0.3s;
}


.p1:hover {
    border-left: #ffc400 solid 2px;

}

/*# sourceMappingURL=style.css.map */