.body {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
}
.body::-webkit-scrollbar {
    width: 10px;
}
.body::-webkit-scrollbar-track {
    background-color: darkblue;
}
.body::-webkit-scrollbar-thumb {
    background-color: #FF007F;
    border-radius: 15px;
    width: 7px;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    color: #DC1FFF;
    font-size: x-large;
    cursor: pointer;
}
.navbar a:hover{
    transition: all 200ms;
    scale: 120%;
    border-bottom: 4px solid blue;
    background-color: white;
    color: blue;
    padding: 10px;
}

.First {
    font-family: 'Arial, Helvetica, sans-serif';
    color: greenyellow;
    font-size: x-large;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.pfp {
    width: 30vw;
    border-radius: 50%;
    border: 5px solid #FF007F;
}

.media {
    width: 400px;
}

.Second {
    font-size: larger;
    display: grid;
    grid-template-columns: 400px 600px;
}

.Third {
    overflow: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent line breaks */
    padding: 10px; 
}
.Third img {
    /* Style individual images */
    width: 18vw;
    height: 30vh;
    margin-right: 12px; /* Add spacing between images */
}
.Third::-webkit-scrollbar {
    height: 8px;
}
    /* adding color to scrollbar thumb */
.Third::-webkit-scrollbar-thumb {
    background: #3DDCFF; 
    border-radius: 5px;
}

.desc {
    margin: 10px;
    width: 580px;
    border: 2px solid aliceblue;
    color: aliceblue;
    font-size: large;
}

.Fourth {
    font-size: larger;
    display: grid;
    grid-template-columns: 400px 600px;
}

.Final {
    margin-top: 5px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    color: #32FF00;
    align-items: center;
    background-color: #FF8500;
    font-size: larger;
    font-weight: bold;
}