body{
    margin: 0px 10%;
}
.title{
    display: flex;
    align-items: center;
}
.title *{
    margin: 0px;
}
.title p{
    font-size: 1.5rem;
    margin-left: 5px;
}
.title h1{
    font-size: 4rem;
}
.description{
    margin: 0px;
}
.logo{
    width: 300px;
    margin-left: auto;
}
.tools{
    display: grid;
    width: 100%;
    margin: 20px auto 0px auto;
    justify-items: center;
    align-items: center;
    justify-content: start;
    align-content: start;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tools-item{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 200px;
    border: 2px solid #000000;
    padding: 0px 10px;
    box-sizing: border-box;
    border-radius: 20px;
    color: inherit;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    transition: all 0.3s ease;
    overflow: hidden
}
.tools-item-name{
    font-size: 1.8rem;
    margin: 0px;
    margin-top: auto;
}
.tools-item-description{
    margin: 5px 0px;
}
.tools-item-prompt{
    font-size: 0.7rem;
    margin-top: auto;
}
.easteregg{
    aspect-ratio: 16 / 9;
    justify-content: center;
    align-items: center;
    position: relative;
}
.easteregg-coverlayer{
    background-color: #000000;
    margin: auto;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 999;
}
.easteregg-video{
    width: 100%;
    height: 100%;
}
.coprnotice{
    font-size: 0.8rem;
    margin-top: 20px;
    text-align: start;
}


@media(max-width: 480px){
    body{
        margin: 6% 10%;
    }
    .title h1{
        font-size: 3rem;
    }
    .title p{
        font-size: 1.125rem;
        margin-left: 6.25px;
    }
    .description,.description+p{
        font-size: 0.8rem;
    }
    .logo{
        width: 170px;
    }
    .tools{
        grid-template-columns: repeat(1, 1fr);
    }
    .coprnotice{
        text-align: center;
    }
}
@media(max-width: 460px){
    .title h1{
        font-size: 2.5rem;
    }
    .title p{
        font-size: 0.938rem;
        margin-left: 9px;
    }
    .logo{
        width: 150px;
    }
}
@media(max-width: 390px){
    .title h1{
        font-size: 2rem;
    }
    .title p{
        font-size: 0.75rem;
        margin-left: 2.5px;
    }
    .logo{
        width: 130px;
    }
}