
   /* Body */
body{
    margin: 0%;
    font-family: 'Arial', sans-serif;
    background-color: black;
}


  /* Headings */
h1{
    align-items: center;
    font-size: 5rem;
    color: whitesmoke;
    padding: 20px;
}
h4{
    font-size: 2rem;
    color: whitesmoke;
    padding: 60px;
    max-width: 600px;
    margin-top: 5px;
    margin-bottom: 0%;
   
}
h2{
    color: whitesmoke;
    margin-left: 60px;
    margin-bottom: 0%;
    margin-top: 0%;
}
h5{
    color: whitesmoke;
    font-size: 2.0rem;
    margin: 40px;
    text-align: center;
}
h6{
    color: whitesmoke;
    font-size: 1.5rem;
    margin: 40px;
   
}
.Text{
    justify-content: right;
    align-items: right;
    margin-top: 80px;
    
}
/*images*/

img{
    max-width: 600px;
    border-radius: 10px;
    margin-top: 80px;
    margin-left: 80px;
    margin-right: 0px;

}


  /* Paragraphs */
p{
    font-size: 1.5rem;
    color: whitesmoke;
    padding: 20px;
    max-width: 600px;
    margin-left: 40px;
    margin-top: 0%;
}
   /* Style for the button */
button{
    color: whitesmoke;
    background-color: rgb(247, 152, 247);
    border: none;
    padding: 10px;
    font-size: 1.2rem;
    
    border-radius: 10px;
    margin-right: 20px;
}
button a{
    color: whitesmoke;
    text-decoration: none;
}
button:hover{
    background-color: rgb(240, 107, 240);
    cursor: pointer;
    transform: scale(1.1);
    
}

    /* Style for the navigation bar */ 

nav{
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 1rem;
    
}
nav a{
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    position: relative;
}
nav a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: whitesmoke;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}
nav a:hover::after{
    width: 100%;
}
  /* Style for the container and home section */
.Container{
    display: flex;
    flex-direction: column;
    
}
.Container-2{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 80px;
}
.Home{
    background-image: url(images/Background-1.png);
    background-size: cover;
}
.Company{
    background-color: black;
    background-size: cover;
    margin-bottom: 0%;
}
.card{
    background-color: burlywood;
    padding: 10px;
    margin: 60px;
    border-radius: 10px;
}
.headers{
    display: flex;
    flex-direction: row;
    gap: 350px;
    font-size: 2rem;
    margin-top: 40px;
}
.Container-3{
    display: flex;
    flex-direction: row;
    
}
.cards-2{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px;
}
.cards-2:hover{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    cursor: pointer;
    transform: scale(1.04)
}

