@import url('https://fonts.googleapis.com/css2?family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "SUSE Mono", sans-serif;
}
html{
    width: 99vw;
    display: flex;
    justify-content: center;
}
body{
    background: #292b2a;
    width: 70%;
}

header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
}

header h1{
    padding-top: 6px;
    color: aliceblue;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
}
header nav{
    margin-top: 20px;
    background: #ffdd95;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 7vh;
}

header nav a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: black;

}

header nav a:hover{
    color: red;
    transition: 0.3s;
    transform: scale(1.02);
}


.notice p{
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
}

.notice p strong{
    color: red;
}

.notice p a{
    text-decoration: none;
    color: white;
}
.notice p a:hover{
    color: aquamarine;
    text-decoration: underline;
    transition: 0.3s;
}

.dev_message{
    margin: 25px 0px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    border: 1px solid white;
    padding: 10px 0px;
}

.dev_message p{
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    border-right: 1px solid white;
    padding: 0px 10px;
}
 .dev_message p:last-child{
    border-right: none; 
    }
.dev_message p strong{
    color: #ffdd95;
}

.dev_message p a{
    text-decoration: none;
    color: aquamarine;
}
.dev_message p a:hover{
    color: white;
    text-decoration: underline;
    transition: 0.3s;
}

article{
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

article h2{
    color: white;
    font-size: 1.3rem;
    text-align: center;
    text-decoration: underline;
}

article ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
article ul li{
    background: #ffdd95;
    padding: 5px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    color: black;
}

article ul li a {
    text-decoration: none;
    color: black;
}
article ul li a:hover{
    color: #4e5853;
    transition: 0.3s;
    text-decoration: underline;
}
article p{
    color: white;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.5rem;
}

article p a{
    text-decoration: none;
    color: violet;
}
article p a:hover{
    color: aquamarine;
    text-decoration: underline;
    transition: 0.3s;
}

article h3{
    color: #ffdd95;
    font-size: 1.2rem;
    text-align: left;
    width: 100%;
    text-decoration: underline;
    margin-top: 20px;
}

.thank_you {
    color: white;
    margin-top: 20px;
    padding: 15px;
    background-color: #4e5853;
    border-radius: 10px;
    text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
    color: #845e5e;
}

footer a {
  color: #845e5e;
  text-decoration: none;
}

footer a:hover {
    color: #ffdd95;
  text-decoration: underline;
}


/* Mobile View: Screens 768px and below */
@media screen and (max-width: 768px) {

  #allmovieshub_logo{
    width: 300px;
    height: auto;
    margin-bottom: 10px;
  }
  
  html {
    width: 100vw;
    padding: 0px;
  }

  body {
    width: 100%;
    padding: 5px;
  }

  header h1 {
    font-size: 1.3rem;
  }

  header nav {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    border-radius: 15px 15px 15px 15px;
  }

  header nav a {
    font-size: 1rem;
    margin: 5px 0;
  }

  .notice p {
    font-size: 1rem;
    padding: 0 5px;
  }

  .dev_message {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .dev_message p {
    font-size: 0.85rem;
    border-right: none;
  }

  article {
    width: 100%;
    padding: 10px;
    gap: 15px;
  }

  article h2 {
    font-size: 1.2rem;
  }

  article h3 {
    font-size: 1.1rem;
    text-align: left;
  }

  article p {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }

  article ul {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  article ul li {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
  }

  .thank_you {
    padding: 10px;
    font-size: 0.95rem;
  }

  footer {
    font-size: 13px;
    padding: 15px;
  }

  .side_add {
    display: none;
  }
}
