* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #eef4f4;
    overflow-y: scroll;
    /* overflow: hidden; */
    min-height: 40rem;
}

a {
    text-decoration: none;
}

h5 {
    color: rgb(175, 175, 175);
    text-align: center;
    /* font-size: 1.2rem; */
    font-weight: bold;
}

.download {
    cursor: url("asterisk.svg"), auto;
}

.one-pager {
    color: rgb(7, 167, 127);
    text-align: center;
    /* font-size: 2.5rem; */
    font-weight: bolder;
    transition: color 0.5s ease;
}

.one-pager:hover {
    color: rgb(62, 71, 198);
    animation: colors 5s infinite;
}

/* @keyframes colors {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
} */

img {
    height: 12.5em;
}

@media screen and (max-width: 1400px) {
    img {
        height: 10em;
    }
}

.temp {
    height: 0rem;
}

@media screen and (min-width: 1400px) {
    .temp {
        height: 5rem;
    }
}

@media screen and (max-width: 1400px) and (min-width: 600px) {
    .temp {
        height: 10rem;
    }
}

@media screen and (max-width: 600px) {
    .temp {
        height: 0rem;
    }
}