/* General styles */
html,
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* For link color */
a:link, a:visited {
color:whitesmoke;
}

/* Top bar styles */
.top-bar {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

/* Banner styles */

.banner {
    background-color: #222;
    color: #fff;
    display: flex;
    min-height: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: top;
    padding: 50px 10%;
}

span {
    text-align: left;
    color: bisque;
}

.banner-text {
    flex-basis: 55%;
    text-align: left;
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color:rgb(215, 215, 210)
}

.banner-text a {
    background-color: #fff;
    border-radius: 25px;
    color: #222;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-text a:hover {
    background-color: #222;
    color: #ffffff;
}

.banner-image {
    flex-basis: 40%;
    text-align: center;
}

.banner-image img {
    border-radius: 50%;
    height: 375px;
    width: 375px;
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.footer a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}
