* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden;
}

.root {
    position: relative;
    height: 90%;
    overflow: hidden;
}

.hero-section {
    width: 100%;
    height: 100%;
    margin: auto;
    position: relative;
    border-bottom: 10px solid white;
}

.hero-image {
    background-image: url("./assets/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    height: 100%;
}

.footer {
    width: 100%;
    height: 100%;
    background-color: white;
    /* border-radius: 50% / 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; */
    /* position: absolute;
    bottom: 0;
    left: 0; */
    clip-path: ellipse(55% 120px at 50% 100%);
}


.logo {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.title {
    position: absolute;
    top: 20%;
    left: 50px;
    object-fit: contain;
    color: white;
    font-size: 100px;
}

.symposium-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0%;
    left: 0;
}

.sections {
    width: 100%;
    display: flex;
    justify-content: space-around;

}

.per-symposium {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 500;
}

.per-symposium img {
    width: 100px;
}

.per-symposium p {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}

.symposium-desktop {
    display: flex !important;
}

.symposium-mobile {
    width: 100%;
    display: none !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.symposium-mobile img {
    width: 100px;
}

.website {
    width: 100%;
    font-size: 40px;
    text-align: center;
    margin-top: 5px;
}

@media screen and (max-width: 1000px) {
    .title {
        font-size: 90px;
    }

    .website {
        font-size: 30px;
    }

}


@media screen and (max-width: 900px) {
    .title {
        font-size: 80px;
    }

    .website {
        font-size: 25px;
    }

}

@media screen and (max-width: 700px) {
    .title {
        font-size: 60px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .symposium-section {
        bottom: 5%;
    }

    .per-symposium img {
        width: 90px;
    }

    .per-symposium p {
        font-size: 14px;
    }

    .website {
        font-size: 25px;
    }

    .symposium-desktop {
        display: none !important;
    }

    .symposium-mobile {
        display: flex !important;
    }

    .root {
        height: 75%;
    }

}

@media screen and (max-width: 500px) {
    .title {
        font-size: 40px;
    }

    .logo {
        width: 50px;
        height: 50px;
    }


}

@media screen and (max-width: 400px) {
    .title {
        font-size: 35px;
    }

    .website {
        font-size: 20px;
    }
}