* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}

body, html {
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('bg_netflix2.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 20%;
}


.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  z-index: 1; 
}


.logo {
  width: 150px;
  height: auto;
}

.select {
  background-color: rgb(40, 34, 34);
  border: 2px solid grey;
  padding: 5px;
  font-size: 1em;
  border-radius: 8px;
  justify-content: center;
}

.sign-in {
  background-color: red;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 8px;
  text-align: center;
  margin-left: 10px; 
  height: 3em;
  width: 5em;
}

.content {
  text-align: center;
  color: white;
  position: relative; 
  z-index: 2;
}


h1 {
  font-size: 2.5em;
}

h2, h3 {
  font-size: 1.2em;
  margin-top: 10px;
}

.input2 {
  height: 3em;
  width: 20em;
  font-size: 1em;
  border: 1px solid white;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  backdrop-filter: blur(10px);
  text-align: center;
  margin-top: 1em;
}

.input2::placeholder{
  color: white;
}

.button2 {
  height: 2.8em;
  width: 8em;
  background-color: red;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bolder;
  margin-left: 0.5em;
}
