@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --global-font-family: "Montserrat", sans-serif;
  --primary-color: #ffffff;
  --bg-color: #000000;
  --white: #fff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--global-font-family);
}

html,
body {
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background-image: url('../images/background.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#second-option {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background-image: url('../images/banner-2.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content h1 {
  text-align: center;
  font-weight: 700;
  font-size: 44px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.63);
  text-transform: uppercase;
  color: var(--primary-color);
}

.content p {
  text-align: center;
  font-size: 18px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.397);
  font-weight: 500;
  color: #f3f3f3;
  text-transform: capitalize;
}

.content a {
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.content #btn {
  padding: 10px 25px;
  border-radius: 50px;
  display: block;
  font-size: 18px;
  font-weight: 500;
  background-color: #b30000;
  box-shadow: 2px 5px 0px #ffffffc4;
  color: #fff;
}

#btn svg{
  transition: all 0.3s ease-in-out;
}

#btn{
  transition: all 0.3s ease-in-out;
}

#btn:hover svg{
  transform: translateX(5px);
}

#btn:hover {
    background-color: #bd0f0f;
    box-shadow: 2px 5px 0px #ffffffc4, 0 0 10px rgba(255,255,255,0.2);
}

.book__image img{
  border-radius: 10px;
  border: 2px solid #ffffff8a;
}

button{
  border: none;
  outline: none;
}

@media(max-width: 764px){
  #second-option{
    padding-block: 40px;
    height: auto !important;
  }
  .content h1{
    font-size: 36px;
  }
  .content p{
    font-size: 15px;
  }
}

@media(max-width: 1120px){
  #second-option{
    padding-block: 40px;
    height: auto !important;
  }
}