@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: 'Roboto', sans-serif;
    background-color: hsl(240, 2%, 6%);
}

h1,h2,h3,h4,h5,h6{
    color: hsl(240, 2%, 84%);
}

p{
    color: hsl(240, 2%, 62%);
}

a{
    color: hsl(240, 40%, 62%);
    text-decoration: none;
}

a:hover{
    color: hsl(240, 40%, 62%);
    text-decoration: underline;
}

a:visited{
    color: hsl(265, 40%, 55%);
}

div{
    border: 0.5px;
    border-style: solid;
    border-color: hsl(240, 2%, 16%);
    padding: 2%;
    border-radius: 25px;
    background-color: hsl(240, 2%, 10%);
    box-shadow: hsl(240, 2%, 4.5%) 0px 4px 10px 3px;
}

button{
    border: 0.5px;
    border-style: solid;
    border-color: hsl(240, 2%, 22%);
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    padding-left: 1%;
    padding-right: 1%;
    text-align: center;
    background-color: hsl(240, 2%, 16%);
    border-radius: 25px;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.purpleButton{
    border-color: hsl(270, 60%, 70%);
    background-color: hsl(270, 70%, 60%);
}

.purpleText{
    color: hsl(270, 8%, 88%);
}

button:hover{
    transform: scale(1.09);
    box-shadow: hsl(240, 2%, 8%) 0px 2px 5px 1px;
}