@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --middle: #d2c7ff;
    --medium-dark: #322C58;
    --dark: #130E23;
    }

* { box-sizing: border-box; margin: 0; padding: 0;
    font-family: poppins; font-size: 16px; 
    }

html {
    scroll-behavior: smooth;
    }   
 
body {
    background-color: #d2c7ff;
}  
    
/* unvisited link */
    a {
        color: black;
        text-decoration: none;
        } 
    
/* visited link */

    a:visited {
        }

/* mouse over link */

    a:hover {
      color: white;
        }

/* selected link */
    a:active {
      color: yellow;
        }


div {
    border: 1px solid black;
    }

p {
    margin: 0 0 5px 0;
    }

