body{

    margin: 0;
    padding: 0;
    font-family: "Tektur", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

header img{

    width: 100%;
    object-fit: cover;
}

main{

    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 5%;
}

.main-element{

    width: 100%;
    text-align: center;
    align-items: center;
}

.main-header{

    width: 50%;
    text-align: center;
}

.main-header span{ /* header*/

    font-weight: 900;
    font-size: x-large;
    font-family: "Kumar One Outline", system-ui;
    font-style: normal;
}

.main-header div{ /*content*/

    width: 50%;
    margin: auto;
    text-align:center;
}

.main-button{

    margin-top: 3%;
    margin-bottom: 6%;
}

.main-button button{

    border: 1px solid gray;
    border-radius: 3rem;
    background-color: black;
    color: white;
    padding: 0.70rem 1rem 0.70rem 1rem;
    font-family: "Tektur", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    cursor: pointer;
    transition: all 0.7s;
}

.main-button button:hover{

    background-color: white;
    color: black;
}

.info{

    margin-top: 5rem;
}

@media screen and (max-width: 930px){

    body{

        font-size: medium;
    }

    main{

        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 5%;
    }

    .main-element{

        width: 90%;
        margin: auto;
        margin-bottom: 10%;
    }
    
    .main-header{
    
        width: 100%;
        text-align: center;
    }

    .main-button{

        margin-bottom: 6%;
    }

    .info{

        margin-top: 2rem;
    }

  }
