@import url("general.css");


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
}

main {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: calc(100vh - 122px); */
    min-height: 100vh;
    align-items: center;
    /* box-sizing: border-box; */
    background: linear-gradient(135deg, 
    #2A1857 0%, 
    #3A1F6B 50%, 
    #4A257F 100% );

    h1 {
        font-family: 'Montserrat', "Arial", sans-serif;
        font-size: 36px;
    }
}

.main-section {
    /* position: relative; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* width: auto ; */
    padding: 30px;
    background-color: rgb(139 108 185);
    box-shadow: 0 7px 11px 8px rgb(0 0 0 / 44%);
    border-radius: 10px;
    min-width: 90vw;
    min-height: 60vh;
    /* margin-bottom: 30px; */
    /* transition: max-width 0.3s ease; */
}


@media (max-width:1500px){
    .main-section{
        max-width: 60vw;

    }
}

@media (max-width:900px) {
    .grid-1-2{
        grid-template-columns:1.3fr 2fr ;
        justify-items: center;
        /* column-gap: 30px; */
    }
}

@media (max-width:760px){
    .uk-open>.uk-modal-dialog{
        width: calc(100vw - 60px);
    }
}