/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;

}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: antiquewhite;
    
}

header {

    display: flex;
    background-color: darkblue;
    color: white;
    font-weight: 700;
    justify-content: space-around;
    padding: 15px;
    width: 100%;
}

button {
    background: mediumturquoise;
    padding: 20px;
    border-radius: 40px;
    border: 0;
    font-weight: 700;

}

.container {

    margin: 0 auto;
    max-width: 1440px;

}

ul {
    list-style: none;
}

.nameButton {
    background-color: darkgreen;
    color: burlywood;
    font-weight: 700;
    margin: 0px 0px 0px 80px;
}

ul {
    display: flex;
    margin: 20px 0px 20px 80px;
    gap: 20px;
}

p {
    margin: 0px 0px 0px 80px;
}

h1 {
    margin: 200px 80px 30px 80px;
    font-weight: 700;
}
li{
    border-radius: 40px;
    border: 0;
    font-weight: 700;
    background-color: rgb(189, 189, 189);
    padding: 5px;
}
h3 {
    margin: 20px 300px 20px 0px;
}