* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-image: url("Flag-United-States-of-America.webp");
    background-size: cover;
    background-repeat: no-repeat;
    color: #333;
    line-height: 1.6;
}

.newoo {
    background-color: white;
    width: 100%;
    max-width: 800px;
    height: 700px;
    padding: 20px;
    border: 5px solid black;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center content horizontally */
    gap: 20px; /* Space between elements */
    border-radius: 50px;
}

.dec{
    text-align: center;
    font-size: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.imgtrump {
    background-image: url(truu.jpg);
    background-size: cover;
    babackground-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 14rem;
    border: 10px solid white;
    border-radius: 40px;
    box-shadow: 2px 4px black;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.appicon {
    background-color: black;
    border-radius: 21px;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    /*Spacebetweenicons*/:;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
}

.links-container {
    display: flex;
    flex-wrap: wrap; /* Allow the items to wrap to the next line */
    justify-content: space-between; /* Distribute space evenly */
    gap: 20px; /* Adjust the gap between items */
    max-width: 400px; /* Limit width for better layout control */
    margin: 0 auto; /* Center the container on the page */
}

.links-container a {
    flex-basis: calc(50% - 20px); /* Each link takes 50% of the width minus the gap */
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.links-container a:hover {
    background-color: #ddd; /* Change background color on hover */
}




.appicon a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease; /* Animation for hover effect */
}

.appicon a img:hover {
    transform: scale(1.2); /* Slight zoom on hover */
}




header.hero {
    background-color: white;
    
    color: black;
    padding: 20px 20px;
    text-align: center;
    -webkit-backface-visibility: 20%;
}

nav.navbar ul,
        nav.footer-nav ul {
            list-style-type: none;
            display: flex;
            justify-content: center;
            padding: 0;
        }
        nav.navbar ul li,
        nav.footer-nav ul li {
            margin: 0 15px;
        }
        nav.navbar ul li a,
        nav.footer-nav ul li a {
            color: black;
            text-decoration: none;
            font-weight: bold;
        }
        nav.navbar ul li a:hover,
        nav.footer-nav ul li a:hover {
            text-decoration: underline;
        }

        main {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
        }





        footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
        }

