/* RESET CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

html {
    font-size: 62.5%;
    font-family: "Heebo";
}

body {
    font-size: 1.2rem;
    position: relative
}

header {
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .15);
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, .15)
}

img,
object,
embed,
video {
    max-width: 100%;
    height: auto
}

a:hover {
    text-decoration: none
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

p {
    margin: 0
}

/* PAGE STYLE CSS */
#pageExportData{
    display: flex;
    background-color: #1b283a;
    background-color: #d1d1d1;
    width: 100%;
    height: 100vh;
}
#pageExportData .exportMain{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    gap: 20px;
}
#pageExportData .exportMain .main,
#pageExportData .exportMain .picture{
    display: flex;
    align-items: center;
    justify-content: center;
}
#pageExportData .exportMain .main{
    flex-direction: column;
    order: 2;
    gap: 20px;
    width: 100%;
}
#pageExportData .exportMain .main .title{
    font-size: 4rem;
    color: #1b283a;
    text-align: center;
}
#pageExportData .exportMain .main .description{
    font-size: 1.6rem;
    color: #1b283a;
    text-align: center;
    max-width: 500px;
}
#pageExportData .exportMain .main .modules{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
    margin-top: 10px;
}
#pageExportData .exportMain .main .modules li{
    display: flex;
    justify-content: center;
    align-items: center;

}
#pageExportData .exportMain .main .modules li a{
    padding: 5px 15px;
    border: 1px solid #1b283a;
    color: #1b283a;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-width: 85px;
    text-align: center;
}
#pageExportData .exportMain .main .modules li a:hover{
    background-color: #1b283a;
    color: #fff;
    transition: all 0.3s ease;
}

#pageExportData .exportMain .main .gohome{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}
#pageExportData .exportMain .main .gohome a{
    position: relative;
    overflow: hidden;
    padding: 5px 10px;
}
#pageExportData .exportMain .main .gohome a::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #1b283a;
    left: -100%;
    bottom: 0;
    transition: all 0.3s ease;
    opacity: 0;
}
#pageExportData .exportMain .main .gohome a:hover::after{
    opacity: 1;
    left: 0;
    transition: all 0.3s ease;
}

#pageExportData .exportMain .picture{
    width: 100%;
    text-align: center;
}
#pageExportData .exportMain .picture img{
    width: 100%;
    max-width: 200px;
}

@media all and (min-width: 800px){
    #pageExportData .exportMain{
        flex-direction: row;
    }
    #pageExportData .exportMain .main{
        width: calc(100% - 400px);
        order: 0;
    }
    #pageExportData .exportMain .picture{
        width: 400px;
        justify-content: flex-start;
    }
    #pageExportData .exportMain .picture img{
        max-width: 350px;
    }
}
