* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: antiquewhite;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

header {
    background-color: chocolate;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    width: 100%;
}

h1 {
    padding: 10px;
    font-size: 24px;
    color: white;
}

nav {
    background-color: burlywood;
    border-radius: 20px;
    margin-top: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    font-size: 18px;
    color: black;
    font-weight: bold;
    padding: 10px;
}

main {
    background-color: white;
    border-radius: 20px;
    padding: 10px;
    margin-top: 10px;

}

footer {
    background-color: rgb(248, 226, 178);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 10px;
}

h3 {
    padding: 10px;
    font-size: 24px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

li {
    font-size: 18px;
    padding: 5px;
    list-style: none;
}


@media (max-width: 760px) {
    header {
        height: 60px;
    }

    h1 {
        font-size: 20px;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    main {
        padding: 15px;
    }

    h3 {
        font-size: 20px;
    }

    li {
        font-size: 16px;
    }
}
.my-element {
    color: rgb(48, 161, 48);
  }
  
.my-element:hover {
    color: red;
  }
  .my-element2 {
    color: rgb(0, 0, 0);
  }
  
.my-element2:hover {
    color: red;
  }
