*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-top: 7px;

}

body{
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;

}

#logo{
    width: 65vw;
}

h1{
    color: rgb(219, 193, 193);
}

#goku{
    color: rgb(255, 0, 0);
    font-size: 45px;
}
#father{
    color: rgb(238, 255, 0);
    font-size: 47px;
}
#anime{
    color: green;
    font-size: 48px;

}

#ball{
    margin-top: 3px;
    width: 130px;
    display: none;

}

#btn{
    width: 25%;
    background: linear-gradient(to right, rgb(255, 255, 2),rgb(255, 0, 0));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    border-radius: 25px;
    color: yellow;
    box-shadow: 2px 2px 10px rgb(255, 255, 2),2px 2px 10px rgb(255, 0, 0);
    border: none;
    transition: all 2.5s;
    cursor: pointer;

}

#btn:hover{
    background: linear-gradient(to right, rgb(255, 2, 2),yellow);
    box-shadow: 2px 2px 25px rgb(188, 255, 2),2px 2px 10px rgb(250, 0, 0);
    letter-spacing: 3px;
    color: red;

}

/* hmmmmmmmmmmmmmm */

  .conlast {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .topbutton {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 10%;
    bottom: 10%;
    background-color: rgb(19, 214, 214);
    cursor: pointer;
  }
  .topbutton:hover {
    background-color: white;
  }

@media (min-width: 1024px) {
    .container {
        width: 80%;
    }

    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.2em;
    }
}

/* Styles for tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        width: 85%;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1.1em;
    }
}

/* Styles for mobile devices */
@media (max-width: 767px) {
    .container {
        width: 100%;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }
    #logo{
        width: 90%;
        height: 100%;
        border-radius: 10%;
    }
    #goku{
        margin: 100px;
    }
    #father{
        padding: 100px;
    }
    #father span{
        margin: 100px;
    }
    #anime{
        color: rgb(46, 0, 252);
        margin: 100px;
    }
    #btn{
        display: flex;
        width: 80%;
        height: 80%;
    }
    #content{
        display: flex;
        width: 55%;
        height: 70%;
    }
}

@media (max-width: 430px) {
    .container {
        width: 100%;
    }

    h1 {
        font-size: 1.5em;
        color: rgba(0, 128, 0, 0.575);
    }

    p {
        font-size: .05em;
        color: green;
        margin: 100px;
        padding: 100px;
    }
    #logo{
        width: 100%;
        height: 100%;
        border-radius: 10%;
    }
    #goku{
        margin: 100px;
    }
    #father{
        padding: 100px;
    }
    #father span{
        margin: 100px;
    }
    #anime{
        color: rgb(46, 0, 252);
        margin: 100px;
    }
    #btn{
        display: flex;
        width: 80%;
        height: 80%;
    }
    #content{
        display: flex;
        width: 80%;
        height: 80%;
    }
}