* {
    font-family: "Azo Sans Black";
    padding: 0;
    margin: 0;
}

body {
    overflow: hidden;
    background: url('corona.jpg');
    background-attachment: fixed;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.navbar-light .navbar-brand {
    color: #b7e9f7;
    ;
    font-size: 3rem;
    margin: 0px;
    background: transparent;
    padding-bottom: 2px;
    padding-right: 0px;
    text-align: center;
}

.home {
    color: #b7e9f7;
    font-size: 1.8rem;
    margin-left: 2px;
    background: transparent;
    text-align: right;
    padding-left: 40px;
    padding-right: 4px;
    padding-bottom: 2px;
    margin-right: 10px;
}

.search {
    color: #b7e9f7;
    ;
    font-size: 1.8rem;
    margin: 20px;
    background: transparent;
    /*padding-right: 2px;*/
    padding-left: 8px;
    padding-bottom: 2px;
    margin-right: 10px;
}

.status {
    color: #b7e9f7;
    ;
    font-size: 1.8rem;
    margin: 20px;
    background: transparent;
    /*padding-right: 2px;*/
    /*padding-left: 2px;*/
    padding-bottom: 2px;
    margin-right: 10px;
}

.about {
    color: #b7e9f7;
    ;
    font-size: 1.8rem;
    margin: 20px;
    background: transparent;
    /*padding-right: 2px;*/
    padding-bottom: 2px;
    margin-right: 10px;
}

section {
    position: relative;
    height: 100vh;
    width: 100%;
    /*background: url('image1.jpg');
    background-size: cover;
    background-position: center;*/
}

section .h-33 {
    position: relative;
    height: 33%;
}

section p {
    color: #b7e9f7;
    font-family: "poppins";
    font-weight: 1000;
    margin-left: 50px;
    padding: 10px;
    text-align: left;
    font-size: larger;
}

section span.pr-4 {
    font-size: 1.5rem;
}

section span.text-white::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 10px;
    background-color: transparent;
    left: 46px;
    bottom: 12px;
}

section .flex {
    display: flex;
    flex-direction: column;
    place-content: space-between;
    align-items: flex-end;
    padding: 10px 0px;
}

section i {
    font-size: 1.5rem;
    color: teal;
}

section h4 {
    color: #ff223c;
    text-shadow: 3px 3px 8px #000;
}

section .social {
    position: absolute;
    left: 100%;
    transform: rotate(-90deg);
    font-size: 1.5rem;
    top: 50%;
    width: 500px;
    display: flex;
    justify-content: space-between;
}

section .social a {
    color: transparent;
    font-size: 1.5rem;
    font-family: "Azo sans";
}

section .social a:hover {
    color: transparent;
    text-decoration: none;
}

section img {
    position: absolute;
    top: -140%;
    bottom: 40%;
    left: 33%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 30%;
    animation: rotate 2s infinite;
    /*transform: rotate(360deg);*/
    padding: 50px;
    border-radius: 60%;
    border-right: 10%;
}


/*@keyframes rotate
{
    0%
    {
        width:30%;
        transform:rotate(90deg);
    }
    80%
    {
        width:30%;
        transform:rotate(180deg);
    }
    90%
    {
        width:30%;
        transform:rotate(270deg);
    }
    100%
    {
        width:30%;
        transform:rotate(360deg);
    }
}*/

@keyframes rotate {
    from {
        width: 30%;
        transform: rotate(0deg);
    }
    to {
        width: 30%;
        transform: rotate(360deg);
    }
}

section .fa-arrow-up {
    /*background-color: white;*/
    color: red;
    margin: 20px;
    height: 100px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    border-radius: 10px 10px 0px 0px;
}

section .fa-arrow-down {
    /*background-color: white;*/
    color: red;
    margin: 20px;
    height: 100px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    border-radius: 0px 0px 10px 10px;
}

section h1 {
    color: white;
    font-size: 4rem;
    left: 55%;
    margin: 150px auto;
    letter-spacing: 25px;
    text-align: center;
}

section h1::before {
    content: "TRACKER";
    position: absolute;
    top: 90px;
    left: 52%;
    transform: translateX(-55%);
    font-size: 2rem;
    letter-spacing: 25px;
    font-family: "Azo sans Light";
}

span.covid {
    color: #ff223c;
}

@media (max-width:1200px) {
    section h1 {
        font-size: 8rem;
    }
}

@media (max-width:991px) {
    section img {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.4);
    }
    section h4,
    .social {
        visibility: hidden;
    }
    header .mt-5 {
        margin-top: 0rem !important;
    }
    .flex {
        visibility: hidden;
    }
}

@media (max-width:768px) {
    .container,
    .container-sm {
        max-width: 100%;
    }
    section h1 {
        font-size: 5rem;
    }
    section h1::before {
        font-size: 1rem;
        letter-spacing: 5px;
    }
    section img {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.3);
    }
    .hide {
        display: none !important;
    }
}

.navbar-brand .mt-5 {
    text-align: center;
}