/* Reset some default styles */


body, h1, h2, p, ul {
    margin: 0;
    padding: 0;

}
p,h1,h2,a,h3,li {

    text-shadow: -1px 0 black, 0 2px black, 2px 0 black, 0 -1px black;
}



body {
    font-family: 'Amatic SC', sans-serif;
    line-height: 1.6;
    font-size: 50px;
    color: white;
    background-color: white;
    background: url("imgs/landscape.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

}

header {
    background-color: #333;
    color: #fff;

}

.navbar {
    width: 100%;
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    
}
.highlight {
    color: #6495ED;
     border-radius: 50px;
  transition: 0.4s ease-in-out;
}
.highlight:hover {

    
    background: #FFBF00;
}


main {
    padding: 40px;
    padding-top: 60px;
    flex: 1;

}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    width: 100%;
    bottom: 0;
    position: sticky;
}

img {
    border-style: solid;
    border-color: black;
    border-radius: 50%;
    object-fit: cover;
    transition: .10s;
    opacity: .7;
}
 img:hover {
    border-width: 5px;
    opacity: 1.0;
}
h2{
    color:#6495ED;
}

@media only screen and (max-width: 767px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        display: flex;
    }

    .nav-links {
        margin-top: 10px;
    }

    .nav-links li {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}


@media only screen and (min-width: 768px) {
    header {
        
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    main {
        margin-top: 80px; 
    }
}
