@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');

/*root color*/
:root {
    --first-color: #D8E5FF;
    --second-color: #F9D8FF;
}

body {
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    overflow-x: hidden;
    margin: auto;
}

html {
    font-family: unset;
    overflow-x: hidden;
    margin: auto;
}

* {
    /* font-family: 'Alice', serif; */
    font-family: Georgia, 'Times New Roman', Times, serif;
}

a {
    text-decoration: none;
    display: block;
    color: black;
}

a:visited {
    color: black;
    text-decoration: none;
}

hr {
    height: 1px;
    background-color: black;
    border: none;
}

h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 40px;
}

p {
    font-size: 25px;
    line-height: 37px;
}

.link-button {
    border-radius: 100px;
    background-color: var(--first-color);
    border: 2px solid var(--first-color);
    ;
    color: black;
    margin: 20px auto;
    padding: 15px;
    width: 200px;
    font-size: 20px;
    text-align: center;
    transition: all 0.3s;
}

.link-button:hover {
    cursor: pointer;
    background-color: transparent;
}

.link-button-pink {
    background-color: var(--second-color);
    border: 2px solid var(--second-color);
}

.link-button-blue {}

/*responsive visualization*/
.mobile {
    display: none !important;
}

@media(max-width: 1000px) {
    .desktop {
        display: none !important;
    }

    h1 {
        font-family: 'Abril Fatface', cursive;
        font-size: 35px;
        font-weight: 100;
    }

    p {
        font-size: 18px;
        line-height: 32px;
    }

    .link-button {
        border-radius: 100px;
        background-color: var(--first-color);
        border: 2px solid var(--first-color);;
        color: black;
        margin: 20px auto;
        padding: 15px;
        width: 150px;
        font-size: 17px;
        text-align: center;
        transition: all 0.3s;
    }

    .link-button:hover {
        cursor: pointer;
        background-color: transparent;
    }

    .link-button-pink {
        background-color: var(--second-color);
        border: 2px solid var(--second-color);
    }

    .link-button-blue {}


}

/*menu*/
.desktop-menu {
    position: fixed;
    z-index: 100;
    top: 0px;
    background-color: white;
    transform: translateX(50%);
    right: 50%;
    width: 100%;
    margin: auto;
    padding: 30px 0px;
    display: flex;
    transition: all 0.3s;
    justify-content: space-between;
    font-family: Georgia, 'Times New Roman', Times, serif !important;
    align-items: center;
}

.desktop-menu-moved{
    padding: 10px 0px !important;
    box-shadow: 0px 0px 20px #00000010;
}

.desktop-menu-logo {
    width: 15%;
    font-size: 20px;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif !important;
}

.dekstop-menu-link-container {
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all 0.1s;
}

.dekstop-menu-link {
    margin: 0px 20px;
}

.dekstop-menu-link::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background-color: black;
    transition: all 0.3s;
}

.dekstop-menu-link:hover::after {
    width: 100%;
}

/*mobile menu*/
@media(max-width: 1000px){
    .mobile-menu-link{
        margin: 5px 0px;
        font-size: 20px;
        border-bottom: 1px solid black;
        padding-bottom: 10px;
    }

    .mobile-menu {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        background-color: white;
        position: fixed;
        width: 100%;
        /* padding: 10px; */
        z-index: 10;
        height: 50px;
        box-shadow: 0px 0px 10px #00000012;
    }
    #hamburger-menu{
        transform: scale(150%);
        z-index: 100;
        transition: all 0.3s;
        margin-right: 20px;
    }

    .mobile-menu-logo {
        margin-left: 20px;
    }
    
    #hidden-mobile-menu{
        position: fixed;
        flex-direction: column;
        top: 0%;
        left: 100%;
        width: 100%;
        height: 100vh;
        display: flex !important;
        justify-content: center;
        align-items: center;
        background-color: white;
        transition: all 0.3s;
        z-index: 1;
    }
    #hidden-mobile-menu.open{
        left: 0% !important;
    }
}


/*footer*/
.footer {
    width: 100%;
    background-color: #dae6ff;
    font-size: 10px;
}
.footer > p{
    font-size: 11px;
    margin: 0px ;
    letter-spacing: 2px;
    text-align: center;
}

/* *{
    border: 1px solid red;
    background-color: rgba(255, 0, 0, 0.164);
}
body{
    background-color: transparent !important;
} */

form{
    margin: 0px auto;
    width: 35%;
}

@media(max-width:1000px){
    form{
        margin: 0px auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
}

input, textarea{
    display: block;
    margin: 10px 0px;
    border: 1px solid black;
    padding: 10px;
    font-size: 20px;
    width: 100%;

}
input[type = "submit"]{
    border: 1px solid black;
    border-radius: 100px;
    background-color: black;
    color: white;
    text-align: center;
    width: 50%;
    transition: all 0.3s;
}
input:hover{
    cursor: pointer;
    background-color: transparent;
    color: black;
}


.thank-you{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 96vh;
}

.loading-cover{
    width: 100%;
    top: 0px;
    height: 100vh;
    z-index: 100000000;
    position: fixed;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-cover > p{
    margin: 5px;
    font-size: 20px;
}

.loading{
    width: 20px;
    height: 20px;
    border: 2px solid black;
    border-radius: 1000px;
    animation-name: rotateLoading;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.loading::before{
    display: block;
    content: "";
    height: 10px;
    width: 10px;
    background:white;
    position: relative;
    left: 5px;;
    top: -7px;
    
}

@keyframes rotateLoading {
    0% {
        transform: rotateZ(0deg);
    }
    100%{
        transform: rotateZ(360deg);
    }
}