@import url(Reset.css);
@import url(Fonts.css);
@import url(Notif.css);

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--whiteColor);
    cursor: crosshair;
    margin: 20px;
    overflow: hidden;
}

a{
    font-size: 100px;
}

main{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.expoSpace{
    width: auto;
    height: auto;
    background-color: var(--blackColor);
    display: flex;
    justify-content: center;
    align-items: center;
}
.hidden{
    display: none;
}