*{
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body{
    background-color: #0e0e0e;
}

h1{
    color: rgb(153, 0, 255);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    text-align: center
}

h2{
   color: rgb(0, 183, 255); 
   font-family: "Poppins", sans-serif;
   font-size: 2rem;
}

#container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

a{
    color: rgb(153, 0, 255);
    text-decoration: none;
}

@media only screen and (max-width: 1300px) {
    h1{
        font-size: 1.5rem;
    }
    h2{
        font-size: 1rem;
    }
}