* {
    line-height: 2;
    color: white;
}

p, ul, li, a {
    font-family: monospace;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../contact/assets/wallpapers/pink-gradient-image.jpg); /* CHANGE THIS TO WHATEVER YOU WANT */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.top-bar{
    margin-top: 20px;
    /* margin-bottom: 20px; */
    width: auto;
    height: auto;
    padding: 15px;
    transition: border 0.3s;
}

.top-bar:hover {
    border: 10px solid rgb(249, 54, 96)
}

.top-bar {
    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; */
}

.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; */
}

#glassmorphism {
    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%);
    padding: 2vw 2vw;
    /* transition: box-shadow 0.3s; */
}




/* CONTENT */


.img-on-left, .img-on-right {
    margin-top: 8vh;
    height: 350px; /* reduce height */
    width: 85vw;
    display: flex;
    align-items: center;
    justify-content: center; /* center items */
    gap: 40px; /* add space between image and text */
}

.img-on-right {
    margin-bottom: 100px;
}

img {
    border-radius: 50px;
}

.phone, .email {
    width: 30vw;
    height: 30vh;
    object-fit: contain;
    border-radius: 50px;
}

.para-cont-left, .para-cont-right {
    text-align: center;
    width: 60vw;
    height: auto;
    margin: 20px;
}

.para-cont-left {
    margin-left: 100px;
}

.para-cont-right {
    margin-right: 100px;
}
