/* 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." */
/* 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." */


html {
    box-sizing: border-box;
    margin: 10px;
    /*background-image: linear-gradient(rgb(205, 100, 39), rgb(249, 249, 249) );*/
    font-family: Verdana;
}

body {
    /*background-color: rgb(249, 249, 249);*/
    color: rgb(114, 226, 131);
    text-align: center;
    margin: 0;
    padding: 0;
    /*height: 100vh;*/

    background-image: url('bkg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    /*background-size: cover;*/
    
}


.container{
    background-color: #333c58;
    margin: 0px 200px 0px 200px ;
    /*height: 100%;*/
    padding: 10px;
    font-size: small;
}

footer{
    color:aliceblue;
    background-color: #333c58;
    margin: 0px 200px 0px 200px ;
}

footer ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.navbar {
    background-color: #111c35;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}


.nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding:  0 30px 0 30px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-links a:visited {
    color: rgb(138, 21, 21);
}

.nav-links a:hover {
    text-decoration: underline;
}





