@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;
    border-bottom: 2px solid black;
    border: 1px solid black;
}

h1 {
    font-size: 35px;
    font-weight: 700;
    color: hotpink;
    border-bottom: 10px dotted purple;
}

h2 {
    font-style: italic; 
}

h3 {
    color: gray;
}

p {
    text-decoration: none wavy black 1px;
}

ul {
    background-color: #FF9284;
    border: 5px solid purple;
    padding: 16px 48px;
}

a:hover {
    color: green;
}

