html{
    overflow-x: hidden;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    background:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(assets/background.jpg);
        background-size: 100% auto;
        background-clip: border-box;
        background-attachment: scroll;
        background-size: cover;
}

#name {
    color: blueviolet;
    font: bolder;
    font-size: 8vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

#text {
    color: blueviolet;
    font-size: 4vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    inline-size: 100vh;
}


#image {
    display: block;
    margin: auto;
    height: 60vh;
    image-rendering: optimizeQuality;
}

#image:active{
    transform: translateY(0.3vh);
}

@media (max-width: 1200px) and (orientation: portrait){
    #name {
        color: blueviolet;
        font: bolder;
        font-size: 4vh;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        text-align: center;
    }

    #text {
        color: blueviolet;
        font-size: 2vh;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        text-align: center;
        inline-size: 50vh;
    }


    #image {
        display: block;
        margin: auto;
        height: 30vh;
        image-rendering: optimizeQuality;
    }
}

@media (orientation: landscape){
    #name {
        color: blueviolet;
        font: bolder;
        font-size: 8vh;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        text-align: center;
    }

    #text {
        color: blueviolet;
        font-size: 4vh;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        text-align: center;
        inline-size: 100vh;
    }


    #image {
        display: block;
        margin: auto;
        height: 50vh;
        image-rendering: optimizeQuality;
    }
}

/*.nav {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(assets/background.png);
    text-align: center;
    font-size: 20pt;
    color: white;
    padding: 10px 0px;
    border-radius: 50px;
}

.main-menu> li{
    display: inline-block;
    width: 200px;
    font-weight: bolder;
    color: aqua;
    transition:.4s;
    font-size: 50px;
    #home {
        text-decoration: none;
        color: aqua;
    }
}

.assets{
    display: none;
    position: absolute;
    margin-left: -10px;
    padding: 10px;
    width: 200px;
    text-align: left;
    list-style: none;
    text-decoration: none;
    border-radius: 10px;
    background:
        radial-gradient(rgb(0, 79, 250), rgba(0,0,0,0.7));
    a{
        text-decoration: none;
        color: yellow;
    }
    box-shadow: 1px 1px 1px 1px black;
}

.main-menu li:hover{
    background: black;
    border-radius: 10px;
    padding: 5px;
}

.assets li:hover{
    padding: 5;
    background: black;
    border-radius: 10px;
}

@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.main-menu li:hover .assets{
    display: block;
    animation-name: fade;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.2s;
}/*



