@import url(
'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'
);
@import url(
'https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100..900;1,100..900&display=swap'
);

body{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
    text-overflow: ellipsis;
    text-wrap: none;
    color: white;
    background-color: black;
}
main{
    margin-top: 5%;
}
.navigation-bar{
    width: 40%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: 5%;
}
.navigation-bar a{
    margin-left: 3vw;
    text-decoration: none;
    padding-bottom: 5px;
    color: transparent;
}
.navigation-bar a:hover{
    border-bottom: gray 2px solid;
}
.bg-image{
    margin-left: 50vw;
    margin-right: 50vw;
    height: auto;
    width: 40%;
    position: absolute;
    overflow: hidden;
    z-index: -1;
}
.hello-box{
    border-radius: 40px;
    max-width: 40vw;
    display: flex;
    justify-content: center;
    background: rgb(3,0,0);
    background: linear-gradient(323deg, rgba(3,0,0,1) 47%, rgba(3,0,0,1) 84%, rgba(24,23,23,1) 88%, rgba(99,94,94,1) 98%);
}
.hello-box h3{
    margin-top: 10%;
    font-family: "REM", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: xxx-large;
    font-style: normal;
    margin-left: 10%;
    margin-right: auto;;
}
.hello-box h2{
    font-style: oblique;
    font-weight: lighter;
    margin-left: 10%;
}
.mobile{
    display: none;
}