body{
      /* Centers the image */
    min-height: 100%;
    width: 100vw;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    /* margin: auto; */
    color: white;
    overflow-x: hidden;
}

html, body {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

html {
    background-image: url("jlpv3gf20c291.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-container h1 {
    margin-bottom: 0px;
    padding-top: 15px;
}

.discover-my-prowess {
    margin-bottom: 30px;
}

.prowess-btn {
    font-family: 'Courier New', Courier, monospace;
    border: none;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 10px;
    font-size: 17.5px;
    color: white;
    transition: background 0.4s, color 0.3s;
}

.prowess-btn:hover {
    background: rgba(255,255,255,0.6);
    color: rgb(192, 72, 228);
}


.main-container, .top-bar, .links-to-social {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* flex-direction: column; */
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    font-family: monospace;
    padding: 24px 32px;
    /* transition: box-shadow 0.3s; */
}

.main-container h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.main-container {
    flex-direction: column;
    width: 70vw;
    max-width: 900px;
    height: 320px;
    padding: 2em;
    line-height: 2;
    padding-bottom: 50px;
    margin-top: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.5s, padding 0.3s cubic-bezier(0.4,0,0.2,1);
}

.main-container:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    padding: 50px;
}


.top-bar{
    font-family: monospace;
    margin-top: 20px;
    width: auto;
    height: auto;
    padding: 15px;
    transition: border 0.3s;
}

.top-bar:hover {
    border: 10px solid rgb(48, 61, 245)
}

.home, .about, .contact, .skillset{
    margin-left: 15px;
    margin-right: 15px;
    transition: transform 0.5s, box-shadow 0.3s;
    border-radius: 20px;
}

.home:hover,
.about:hover,
.contact:hover,
.skillset:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.btn{
    margin-left: 3px;
    margin-right: 3px;
    padding: 10px;
    border-radius: 20px;
    background: none;
    border: none;
    /* border: 2px solid blue; */
}

.btn:hover{
    transition: transform 0.2s;
}

.box{
    width: 100px;
    height: 70px;
}

.links-to-social {
    height: auto;
    width: auto;
    margin-top: 70px;
    padding: 15px;
    margin-bottom: 10px;
    transition: scale 0.4s, border 0.2s;
}

.links-to-social:hover {
    scale: 1.09;
    border: 10px solid #1926b6;
}


#icon {
    margin-left: 15px;
    margin-right: 15px;
    height: 50px;
    width: 50px;
}

.choice {
    border: none;
    padding-bottom: 6px;
    font-weight: 900;
    font-size: larger;
}


/* LOADING ANIMATION */

/* LOADING ANIMATION */
/* .loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
}
.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}
.loader::before {
    border-color: rgb(197, 48, 197) white;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}
.loader::after {
    margin: 8px;
}
@keyframes l16 {
    100%{transform: rotate(1turn)}
} */

.loading-wrapper {
    text-align: center;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-image: linear-gradient(to bottom right, rgb(35, 35, 196), rgb(232, 58, 235),rgb(215, 62, 33));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.loading-wrapper p {
    font-family: monospace;
    font-size: 25px;
}

.fake {
    font-size: 10px;
    opacity: 0.5;
}
