@font-face {
  font-family: 'Pricedown';
  src: url('fonts/Pricedown.tff.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body{
    background-color: #1a1818;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Poppins', sans-serif ;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;

}


.logo .logoname h1{
    font-family: 'Pricedown', sans-serif;

    color: #7a78faad;
    
}



.loading{
    height: 60px;
    width: 60px;
    border: 5px solid black;
    border-radius: 50%;
    margin: 0 auto;
}

.load{
    height: 60px;
    width: 60px;
    border: 5px solid #7A78FA;
    border-bottom: none;
    border-left: none;
    border-radius: 50%;

    animation: spin 1s ease infinite;
}

@keyframes spin{
        100% {
            transform: rotate(360deg);
        }
}










