/* Reset default margin and padding */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    
}




header {
    background-color: #fff;
    color: #666e78;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: teal;
    text-decoration: none;
    font-weight: bold;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}


.summary-card-white-bg {
    margin-top: 7px;
    padding-top: 18px;
    padding-bottom: 27px;
    padding-left: 18px;
    padding-right: 18px;
    background: none;
    display: flex;
}





.myBtno {
    background: lightgrey;
    padding: 12px;
    padding-bottom: 4px;
    text-align: center;
    justify-content: center;
    border: 2.5px solid grey;
    border-radius: 7px;
    
}


.myBtno:hover {
    background: #7e7eb7;
    border: 4px solid black;
    border-radius: 7px;
    padding: 12px;
    padding-bottom: 4px;
    
    
    text-align: center;
    justify-content: center;
    align-content: center;
    text: yellow
   
    
}


.myBtno a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    border:none;
    border-radius: 3px solid black;
    align-content: center;
    horizontal: center;
    text-align: center;
}




.myBtno a:hover {
    color: #aee8fdfa;
    text-decoration: none;
    font-weight: bold;
    border:none;
    border-radius: 3px solid yellow;
    align-content: center;
}




article {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

article h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

article p {
    margin-bottom: 10px;
}

article img {
    max-width: 100%;
    height: auto;
    border: 2px solid black;
    border-radius: 4px ;
    min-width: 90px;
    min-height: 90px;
    margin-right: 65px;
    display: flex;
}

article img:hover {
    max-width: 100%;
    height: auto;
    border: 2.5px solid black;
    border-radius: 7px;
    transform: scale(.98);
    max-height: 100%;
    margin-right: 65px;

}



footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header, nav ul {
        text-align: center;
    }
    
    nav li {
        display: block;
        margin-bottom: 10px;
    }
    
    main {
        padding: 10px;
    }
}