@import "https://unpkg.com/open-props";
@import "https://unpkg.com/open-props/normalize.min.css";

* {
 box-sizing: border-box;
}
 
body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  background: black
  font-family: roboto condensed;
  
}



.fixed-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.btn {
  padding: 10px;
  margin: 2px;
  background-color: #007bff;
  color: white;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}







:root {
  --magnifier: 6;
  --gap: 1vmin;
  --transition: 0.5s;
}
  
.spacing_top {

  margin-top: 8vh;
  background: black
}

.spacing {

padding-top: 5vh;
background: black

}
.container {
  width: 90vw;
  height: 50vmin;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  background: black
}

img {
  --brightness: 0.75;
  --grayscale: 0.5;
  transition: flex var(--transition), filter var(--transition);
  height: 100%;
  filter: grayscale(var(--grayscale)) brightness(var(--brightness));
  object-fit: cover;
  overflow: hidden;
  flex: 1;
  
}

img:hover {
  --brightness: 1.15;
  --grayscale: 0;
  height: 110%;
  width: 120%;
  background: black
}




.my-work-section {
  background-color: black;
  color: white;
  text-align: left;
  margin-left: 8vh;
  padding: 0px 0; 
  margin-top: 15vh

  
}


.my-work-heading1 {
  background-color: #000000;
  font-size: 400%;
  color: white;
  margin-bottom: 8px;
  
}

.my-work-section1 {
  background-color: black;
  color: white;
  text-align: left;
  margin-left: 8vh;

  padding: 0px 0; 
  margin-top: 8vh

  
}


.my-work-heading {
  background-color: #000000;
  font-size: 400%;
  color: white;
  margin-bottom: 5px;
  
}







.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background-color: rgb(0, 0, 0); /* Slightly transparent black */
  color: #fff;
  text-align: center;
  padding: 20px 0;
  z-index: 3; /* Place it above other content */
}

.content-container{
text-align: center;
color: white;

}
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 1); /* Slightly transparent black */
  color: #fff;
  text-align: center;
  padding: 20px 0;
  z-index: 1; /* Place it above other content */
}
/* Style for the menu options */
.menu-options {
  list-style: none;
  padding: 0;
  padding-top: 0.8%;
}

.menu-options li {
  display: inline;
  margin: 0 70px;
  font-size: 1.5em;
  font-family: roboto condensed;
}
.menu-options li :hover {
font-size: 110%

}

.menu-options a {
  text-decoration: none;
  color: #fff;
}

/* Style for the header and description */
.header {
  text-align: left;
  font-size: 6em;
  margin-bottom: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}






.image-gallery {
  background-color: black;
  padding: 10vh 10vw; 
  margin: 10vh;
  color: white;
}


.image-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8vh;
}

/* Style for the image */
.gallery-image {
  width: 60%; 
  max-height: 90%; 
  border-radius: 20px; 
  cursor: pointer;
  transition: backround-color 0.3s;
  
}

/* Style for the text container */
.text-container {
  flex: 1; 
  padding: 30px 20px; 
}

/* Style for the title */
.image-title {
  font-size: 50px;
  margin-bottom: 10px;
  padding-left: 1.5vh;
}

/* Style for the description */
.image-description {
  font-size: 30px;
  padding-left: 1.5vh;
  padding-top: 3%;
}


































.contact-section {
  background-color: black;
  color: white;
  padding: 20px 20px;
  padding-left: 10vh;
  padding-right: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.contact-left {
  flex: 1;
  text-align: left;
  padding-bottom: 20vh;
  padding-right: 3vh;
}

.contact-heading {
  font-size: 4em;
  margin-bottom: 20px;
}

.contact-description {
  font-size: 1.5em;
  margin-bottom: 30px;
}

/* Styles for the right side of the contact section */
.contact-form {
  flex: 1;
  text-align: left;
}

.form-input {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
}

.form-textarea {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
}

.form-submit {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px 20px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background-color: #373737;
}
