span {
  font-weight: bolder;
}

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

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

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';
  text-align: justify;
}

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

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

.main-container {
    margin: 30px;
    align-content: center;
    text-align: justify;
}

.main-container h1 {
    margin-top: 60px;
    text-align: center;
}

.tainy {

     margin: 100px 0 100px;
    border: aliceblue 3px solid;
    width: 10in;
    border-radius: 3%;
}

.p2,
.p3,
.p4,
.p5,
.p6 {

    margin-top: 50px;
}

.tainy-1 {

    margin: 100px 0 100px;
    border: aliceblue 3px solid;
    width: 10in;
    border-radius: 3%;
}

.btn-gradient {
  margin-top: 20px;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #007BFF, #3700FF,  #2D00D1, #9a00c1); 
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s;
  font-family: 'Michroma';
  box-shadow: 3px 3px 5px #3700FF;
}

.btn-gradient:hover {
  transform: scale(1.05);
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

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;
        padding: 15px;
    }

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

    nav a {
        font-size: 16px;
    }

    /* MAIN CONTAINER */
    .main-container {
        margin: 20px 15px;
        text-align: justify;
    }

    .main-container h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-top: 30px;
        padding: 0 10px;
    }

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

    /* PARAGRAPHS */
    p,
    .p2, .p3, .p4, .p5, .p6 {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 25px;
    }

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

    /* BUTTON */
    .btn-gradient:hover {
        transform: scale(1.05); 
    }
}
