* {
    margin: 0;
    padding: 0;
}

.high {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

html {
    background-color: #cfced7;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.new1 {
    border: 2px black solid;
    width: 300px;
    border-radius: 20px;
    margin: 40px;
    background-color: #ffffff;
}

.new1:hover {
    background-color: grey;
    padding: 10px;
}

img {
    margin-left: 20px;
    margin-top: 20px;
    height: 200px;
    width: 250px;
    border: 5px black solid;
    border-radius: 20px;
}

p {
    margin: 15px;
}

.heading {
    font-family: "Anton SC", sans-serif;
    text-align: center;
    margin: 20px;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
}

.headbar,
.footbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid black;
    font-size: 20px;
    font-weight: bold;
}

.footbar {
    border-top: 1px solid black;
}

footer p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
}

a {
    text-decoration: none;
    color: black
}

a:hover {
    color: white;
}