.img_home{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img_home img{
    width: 75%;
}

.start_btn{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.start_btn .btn {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Bluu Next, serif';
    color: white;
    padding: 15px 20px;
    outline: none;
    border: none;
    border-radius: 15px;
    background: #6b63b5;
    cursor: pointer;
    text-decoration: none;
}

.start_btn .btn:hover{
    color: #6b63b5;
    background: #F2E9D8;
  }


footer{
    position: absolute;
    font-family: 'Bluu Next, serif';
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    bottom: 0;
    left: 0;
    width: 100%;
	text-align: center;
    font-size: 18px;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1.1;
    background-color: #202020;
    color: #353643;

}

footer a{
    text-decoration: none;
    color: #353643;
}
footer a:hover{
    color: #F2E9D8;
}

@media (max-width: 750px) {

    .img_home img{
        width: 95%;
    }

}



