/* Reset and base styles */
* {
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: center;   
}

h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 30px;  
    margin: 50px 0px 0px 0px;
    padding: 10px;
    text-align: center;
    background-color: pink;
    width: 680px;
    border: 2px solid black;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    color: black;
}

a:hover {
    color: hotpink;
}








