@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Oxygen&display=swap');

h1, h2, h3 {
    font-family: 'Josefin Sans', sans-serif;
}
p, a {
    font-family: 'Oxygen', sans-serif;

}
body {
    background-color: lavender;
}
div {
    background-color: white;
    width: 1000px;
    margin: 50px auto 0px auto;
    border: 4px solid mediumpurple;
    border-radius: 8px;
    text-align: center;
}
h1 {
    color: mediumpurple;
    padding-left: 5px;
}
h2 {
    color: white;
    background-color: mediumpurple;
    font-size: medium;
    padding: 10px;
}
p {
    padding-left: 5px;
}
