* {
text-decoration: none;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
nav {
position: fixed;
top: 0;
width: 100%;
background-color: #fff;
display: block;
align-items: center;
}
.nav .nav-container {
margin: auto;
max-width: 1000px;
display: flex;
align-items: center;
height: 70px;
justify-content: space-between;
}
.nav .logo {
color: rgb(133, 0, 0);
font-weight: bold;
font-size: 20px;
}
.nav .navbar {
color: #444;
font-weight: 400;
font-size: medium;
}
.main {
margin-top: 100px;
}
.container {
left: 0;
max-width: 1000px;
margin: auto;
align-items: center;
padding: 0 2rem;
height: 530px;
}
.content {
padding-bottom: 50px;
margin-top: 10px;
margin-bottom: 20px;
height: 400px;
}
img {
max-height: 400px;
width: 350px;
}
.left-side {
padding-right: 50px;
width: auto;
height: auto;
float: left;
}
.right-side {
text-align: justify;
width: auto;
/* float: left; */
padding: 0px 10px;
margin: auto;
}
.btn {
padding: 14px 100px;
margin-top: 100px;
font-size: large;
background-color: rgb(85, 46, 134);
color: #fff;
}
.btn:hover {
background-color: rgb(128, 71, 199);
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(47, 51, 51);
color: white;
text-align: center;
}