* {
    padding: 0px;
    margin: 0px;
    font-family: "Arial";
    text-align: center;
}
html,
body {
    overflow-x: clip;
}
#background {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    z-index: -1;
}
#background #gradient {
    width: 100vw;
    height: 100vh;
    position: relative;
    top: -50vh;
    border-radius: 50%;
    background: radial-gradient(#00DE3A, #fff 70%);
}

#menu {
    width: 100vw;
    height: 130px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#menu #blurBackground {
    width: 90vw;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, #ffffff80, #D3D3D380);
    border-radius: 20px;
    border: 3px solid #D9D9D9;
    backdrop-filter: blur(10px);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
    padding-right: 30px;
}
#menu #blurBackground #right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#menu #blurBackground #logo {
    height: 100px;
}
#menu #blurBackground #mobileOpen {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    cursor: pointer;
    display: none;
}
#menu #blurBackground #right .link,
#menu #mobileMenu .link {
    padding: 10px;
    margin: 7px;
    cursor: pointer;
    color: #000;
    text-decoration: none;
    font-family: "Arial";
    font-size: 17px;
    position: relative;
}
#menu #blurBackground #right .link::after,
#menu #mobileMenu .link::after {
    content: '';
    display: block;
    width: 80%;
    height: 2px;
    background: #000;
    border-radius: 10px;
    transform-origin: center left;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    position: absolute;
    bottom: 5px;
    left: 10%;
}
#menu #blurBackground #right .link:hover::after,
#menu #mobileMenu .link:hover::after {
    transform: scaleX(1);
}
.title {
    font-size: 48px;
    font-family: "Arial";
    font-weight: bold;
    color: #000;
    margin: 10px;
}
.title2 {
    font-size: 36px;
    font-family: "Arial";
    font-weight: bold;
    color: #413E40;
    margin: 10px;
}
.title3 {
    font-size: 24px;
    font-family: "Arial";
    font-weight: bold;
    color: #413E40;
    margin: 10px;
}
p {
    font-size: 20px;
    font-family: "Arial";
    color: #413E40;
    margin: 10px;
}
#footer {
    width: 100vw;
    padding: 70px 10px;
    box-sizing: border-box;
    background: #4b4b4b;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: relative;
}
#footer a {
    text-decoration: none;
}
#footer p,
#footer a {
    color: #fff;
    font-size: 15px;
    text-align: left;
    padding-left: 5px;
    margin: 5px 0px;
}
#footer .part {
    width: 17.5vw;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
#footer #logoFooter {
    width: 200px;
}
#footer #copyright {
    position: absolute;
    bottom: 10px;
    left: 50vw;
    transform: translateX(-50%);
}
#menu #mobileMenu {
    width: 100vw;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 0px;
    overflow: hidden;
    transition: all 0.4s ease;
}
#menu #mobileMenu #mobileClose {
    width: 40px;
    height: 40px;
    margin: 10px;
}
#menu.open #mobileMenu {
    height: 40vh;
}
@media screen and (max-width: 1000px) {
    #menu #blurBackground {
        width: 100vw;
        height: 130px;
        border-radius: 0px 0px 20px 20px;
        justify-content: space-between;
    }
    #menu #blurBackground .link {
        display: none;
    }
    #menu #blurBackground #mobileOpen {
        display: block;
    }
    #menu #mobileMenu {
        display: flex;
    }
    #footer {
        flex-direction: column;
    }
    #footer .part {
        width: 95vw;
        height: unset;
        margin: 20px 0px;
    }
}