/* updated 8 July 2024 
Made by Dipqi.

*/
body {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    background-color: #020617;
    color: #e0e0e0;
    height: 100vh;
    position: relative; 
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    max-width: 400px; 
    width: 100%;
}


header {
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-content {
    flex-grow: 1;
    margin-right: 20px;
}

.name {
    text-align: left;
}

header h1, header h2, header h3 {
    margin: 2px 0;
    color: #e6f4fd;
}

header h1 {
    font-family: 'Inter' sans-serif;
    font-size: 1.9em;
    line-height: 1.2;
}

header h2 {
    font-size: 1.9em;
    font-weight: normal;
    margin-top: -5px;
}

.description-block {
    margin-top: 10px;
}

header .description,
header .location,
header .email {
    font-size: 0.7em;
    margin: 2px 0;
}

header .description i,
header .location i {
    margin-right: 5px;
}

header .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #e6f4fd;
    flex-shrink: 0;
}

.menu-links {
    margin: 20px 0;
}

.menu-links .menu-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: normal;
}

.menu-links .menu-button {
    text-decoration: none;
    color: #e6f4fd;
    background-color: transparent;
    padding: 5px 8px;
    font-size: 0.8em;
    border-radius: 30px;
    border: 1px solid #e6f4fd;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
}

.menu-links .menu-button i {
    margin-right: 5px;
}

.menu-links .menu-button:hover {
    background-color: #381B01;
    color: #e6f4fd;
}


a {
    color: #e6f4fd;
}
.social-links {
    margin: 20px 0;
}

.social-links .social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.social-links .social-button {
    text-decoration: none;
    color: #e6f4fd;
    background-color: transparent;
    padding: 8px 12px;
    font-size: 0.8em;
    border-radius: 50px;
    border: 1px solid #e6f4fd;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
}

.social-links .social-button i {
    margin-right: 5px;
}

.social-links .social-button:hover {
    background-color: #381B01;
    color: #e6f4fd;
}


.adds-links {
    margin: 20px 0;
}

.adds-links .adds-buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.adds-links .adds-button {
    text-decoration: none;
    color: #e6f4fd;
    background-color: transparent;
    padding: 8px 12px;
    font-size: 0.8em;
    border-radius: 5px;
    border: 1px solid #e6f4fd;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
}

.adds-links .adds-button i {
    margin-right: 5px;
}

.adds-links .adds-button:hover {
    background-color: #381B01;
    color: #e6f4fd;
}


.youtube-playlist {
    margin-top: 20px;
}

.youtube-playlist h2 {
    margin: 20px 0 10px;
    color: #e6f4fd;
    font-size: 1.2em;
}

.youtube-playlist iframe {
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
}

hr {
    border: 0;
    height: 1px;
    background: #949da3;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .container {
        padding-top: 50px; 
        max-width: 90%;
    }
    header h1 {
        font-size: 1.9em;
    }

    header h2 {
        font-size: 1.9em;
    }

    header .description,
    header .location {
        font-size: 0.57em;
    }

    .social-links .social-button {
        font-size: 0.9em;
        padding: 4px 8px;
    }

    .youtube-playlist iframe {
        height: 200px;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
    }

    header .profile-pic {
        margin-top: 10px;
        align-self: center;
    }

    .text-content {
        margin-right: 0;
    }
}