
span {
  font-weight: bolder;
}

.logo a {
    text-decoration: none;
    color: aliceblue;
}

body {
    background-color: rgb(10, 10, 31);
    color: aliceblue;
}

.container {
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: rgb(10, 10, 31);
  color: aliceblue;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: rgb(10, 10, 31);
    font-family: "Zen Dots";
    border-bottom: #2D00D1 2px solid;
    border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: aliceblue;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    gap: 50px;
}

nav a:hover {
    color: #3700FF;
}

ul li {
  list-style: none;
}

/*body custom*/

p {
  font-family: 'Michroma';
}

h1 {
  font-family: 'Zen Dots';
}

h2 {
  font-family: 'Zen Dots';
}

.title h1 {
    margin-top: 44px;
}

.title {
  border: 2px solid;
  border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
  box-shadow: 3px 3px 5px #3700FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.welcome {
  margin-top: 90px;
  text-align: justify;
}

.enjoy {
  color: #3700FF;
}

a {
  text-decoration: none;
  color: aliceblue;
  transition: color 0.3s ease-in-out;
}

a:hover {
    color: #3700FF;
}

.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  grid-template-areas: 
          "title image"
          "text image";
  border: 2px solid;
  border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
  box-shadow: 3px 3px 5px #3700FF;
  margin-top: 150px ;
  padding: 20px;
  gap: 50px;
}

.blog-container h2 {
  margin: 0;
  grid-area: title;
  text-align: justify;
}

.blog-container p {
  grid-area: text;
  text-align: justify;
}

.kratos {
  grid-area: image;
  height: 3in;
  width: 100%;
  border: aliceblue solid 2px;
  border-radius: 8px;
}

.blog-container-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  grid-template-areas: 
          "title image"
          "text image";
  border: 2px solid;
  border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
  box-shadow: 3px 3px 5px #3700FF;
  margin-top: 150px ;
  padding: 20px;
  gap: 50px;
}

.blog-container-1 h2 {
  margin: 0;
  grid-area: title;
  text-align: justify;
}

.blog-container-1 p {
  grid-area: text;
  text-align: justify;
}

.tainy {
  grid-area: image;
  height: 3in;
  width: 100%;
  border: aliceblue solid 2px;
  border-radius: 8px;
}

.blog-container-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
  grid-template-areas: 
          "title image"
          "text image";
  border: 2px solid;
  border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
  box-shadow: 3px 3px 5px #3700FF;
  margin-top: 150px ;
  padding: 20px;
  gap: 50px;
}

.blog-container-2 h2 {
  margin: 0;
  grid-area: title;
  text-align: justify;
}

.blog-container-2 p {
  grid-area: text;
  text-align: justify;
}

.guitar-1 {
  grid-area: image;
  height: 3in;
  width: 100%;
  border: aliceblue solid 2px;
  border-radius: 8px;
}

footer {
  border-top: 2px solid;
  border-image: linear-gradient(to right,#007BFF, #3700FF,  #2D00D1, #9a00c1) 1;
  font-family: "Michroma";
  font-size: 0.5em;
  text-align: center;
  margin-top: auto;
  padding: 10px;
}

/* Mobile screens */
@media only screen and (max-width: 600px) {

    /* HEADER */
    header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 35px;
        padding: 0;
    }

    nav a {
        font-size: 16px;
    }

    nav a:hover {
    color: #3700FF;
    }

    /* TITLE */
    .title h1 {
        font-size: 26px;
        margin-top: 20px;
        text-align: center;
    }

    .title {
        padding: 15px;
    }

    /* WELCOME SECTION */
    .welcome {
        margin-top: 40px;
        padding: 0 10px;
    }

    .welcome p {
        font-size: 14px;
        text-align: justify;
    }

    /* BLOG CARDS (ALL THREE) */
    .blog-container,
    .blog-container-1,
    .blog-container-2 {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "image"
            "text";
        gap: 20px;
        margin-top: 60px;
        padding: 15px;
    }

    .blog-container h2,
    .blog-container-1 h2,
    .blog-container-2 h2 {
        font-size: 20px;
        text-align: center;
    }

    .blog-container p,
    .blog-container-1 p,
    .blog-container-2 p {
        font-size: 14px;
        text-align: justify;
    }

    /* IMAGES */
    .kratos,
    .tainy,
    .guitar-1 {
        width: 100%;
        height: auto;
        max-width: 320px;
        margin: 0 auto;
        border-radius: 10px;
    }

    /* FOOTER */
    footer {
        font-size: 0.7em;
        padding: 15px;
        margin-top: 60px;
    }
}
