/*Global styles*/
:root{
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

*{
  margin: 0;
  padding: 0;
}

body{
  font-family: Sans-Serif;
  font-family: var(--bs-font-sans-serif);
  box-sizing: border-box;
}

a{
  color: maroon;
  text-decoration: none;
}

/*Nav*/
nav{
  background: #060B1B;
  padding: 0.3rem;
  display: flex;
  position: sticky;
  top: 0;
  color: white;
}

nav ul{
  list-style: none;
}

nav li{
  font-size: 1.5rem;
  font-weight: 900;
  margin-left: 0.5rem;
}

nav img{
  height: 10%;
  width: 10%;
}

/*Hero Section*/
.hero{
  background: darkgray;
  color: white;
  background-image: url('../images/hero_img.jpg');
  background-size: center;
  background-repeat: no-repeat;
  padding: 1.5rem;
  padding-top: 2.5rem;
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.hero h1{
 font-size: 2rem;
}

.hero p{
  margin: 1rem 0;
  margin-top: 1.5rem;
}

.hero span {
  color: maroon;
}

.hero button, .content .card_btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  width: fit-content;
  border: 0;
  border-radius: 0.5rem;
  background: #eb2222b7;
  color: maroon;
  transition: all 0.3s ease;
}

.hero button:hover, .content .card_btn:hover {
  background: #fff;
  color: black;
}

/*Content Section*/

.content{
  padding: 1rem;
}

.content .section_title{
  text-align: center;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  padding: 0.35rem;
  color: maroon;
  background: #eb2222b7;
  width: fit-content;
  border-radius: 0.5rem;
}

.content .card{
  margin: 1rem auto;
  max-width: 80%;
  border-radius: 1.75rem;
  box-shadow: 5px 5px 10px rgba(0,0,0,.4);
}

.content .card_img{
  background: lightgray;
   background-size: cover;
  height: 8.5rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.content .card_content{
  height: 30%;
  background: #fff;
  padding: 0.5rem;
}

.content .card_title{
  margin-bottom: .2rem;
}

.content .card_description{
  padding: 2px;
  opacity: 0.65;
}

