* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}


.container {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-items: center;
}

/* 237px */ /*     display: grid;
    place-items: center; */
.container > .nav-container1 {
    width: 100vw; 
    height: 98px;
    position: absolute;
    top: 5%;
    display: grid;
    place-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    z-index: 999;
    margin: 0 auto;
}


/* 220px */
.nav-container2 {
    width: 100vw;
    height: 98px;
    position: absolute;
    top: 15%;
    margin-left: 5px;
    display: grid;
    place-items: center;
    margin: 0 auto;
}

.nav {
    width: 220px;
    height: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    margin-left: -10px;
}

.desktop {
    display: none;
}
.nav > div > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    text-decoration: none;
}

main {
    width: 80%;
    height: 80%;
    background-image: url('../assets/images/bg.svg');
    display: grid;
    place-items: center;
}

main > img {
    height: 50%;
    z-index: 999;
}

.circle-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    z-index: 9;
    display: grid;
    place-items: center;
    color: white;
    font-family: sans-serif;
    font-size: x-large;
    font-weight: 900;
    
}




@media only screen and (min-width: 913px) {

.container > .nav-container1 {
    width: 239px;
    height: 261px;
    position: absolute;
    top: 5%;
    right: 5%;
    display: grid;
    place-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    z-index: 999;
    margin: unset;
}


.nav-container2 {
    width: 215px;
    height: 192px;
    position: absolute;
    inset: unset;
    margin: unset;
    display: unset;
}

.nav {
    width: 192px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    z-index: 999;
    margin: unset;
}

  .desktop {
      display: block;
    }
    .mobile {
        display: none;
    }
    
.nav > div > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    text-decoration: none;
}

main {
    width: 80%;
    height: 80%;
    background-image: url('../assets/images/bg.svg');
    display: grid;
    place-items: center;
}

main > img {
    height: 70%;
    z-index: 999;
}

.circle-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    z-index: 9;
    display: grid;
    place-items: center;
    color: white;
    font-family: sans-serif;
    font-size: xx-large;
    font-weight: 900;
    
}


  }
