/* Main Body */
body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  height: 100vh;
  font-family: Arial, sans-serif;
}

/* Phone Container */
.container {
  height: 80vh;
  width: 40vh;
  position: relative;
  border: 5px solid black;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

/* Phone Notch */
.notch-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
}

.notch {
  width: 20vh;
  height: 2.0vh;
  background-color: #111;
  border-bottom-left-radius: 1.5vh;
  border-bottom-right-radius: 1.5vh;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.header .logo {
  width: 30px;
  height: auto;
}

.header h1 {
  font-family: 'Grand Hotel', cursive; /* Applying the Instagram-like font */
  font-size: 22px; /* Adjust size as necessary */
  color: #333;
  margin: 10; /* Reset default margin */
}

/* Content */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 10px;
  overflow-y: auto;
  width: 90%;
}

.hidden {
  display: none;
}

/* File Upload and Image Preview */
#image, #password {
  width: 80%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#preview, #encrypted-image, #decrypted-image {
  max-width: 100%;
  max-height: 200px;
  margin-top: 10px;
  display: none;
}

.social-buttons {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

/* Button Styles */
button {
  background-color: pink;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: black;
}

/* Download Button Style */
.download-button {
  background-color: pink; /* Same as other buttons */
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: none; /* Initially hidden */
}

.download-button:hover {
  background-color: black; /* Darker on hover */
}

/* Bottom Navigation Bar */
.bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background-color: #fff; /* Same as container background */
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
}

.bottom-nav a {
  color:#111;
  font-weight: 400;
}

/* Link Styles */
a {
  color: #3897f0;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-top: 10px;
}
