*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200&display=swap');
body {
    background-color: #3498db;
    font-family: 'Noto Sans', sans-serif;
    background-image: url(./images/background.gif);
}
.main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#box {
    width: 40%;
    padding: 15px;
    box-shadow: 0px 0px 5px grey;
    background-color: silver;
    border-radius: 5px;
}
.row {
    width: 100%;
    margin: 2rem;
    margin-left: 0;
}
.btn {
    width: 100%;
    padding: 5px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
}
.logo{
    color: white;
    padding: 15px;
}
nav{
    background: lightblue;
    height: 80px;
    width: 100%;
}
.logo{
    color:black;
    font-size: 20px;
    line-height: 80px;
    font-weight: bold;
}
nav ul {
    float: right;
    margin-right: 20px;
}
nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a {
    color: black;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 10%;
    font-weight: bold;
}
a.active,a:hover{
 background: pink;
 transition: 0.5s;
}
#count{
    font-size: 20px;
    font-weight: 600;
    padding: 8px;
    width: 25%;
    margin-bottom: 4px;
    margin-left: 280px;
    box-shadow: 0px 0px 2px 1px purple;
}

@media only screen and (max-width: 600px){
   nav ul li a {
    color: aliceblue;
    width: 100%;
    font-size: medium;

   }
   .main {
    font-size: 12px;
    width: 100%;
    margin: 10px;
   }
   #count{
    font-size: 25px;
    font-weight: 600;
    padding: 2px;
    width: 25%;
    margin-bottom: 4px;
    margin-left: 45px;
    box-shadow: 0px 0px 2px 1px purple;
}
}
  