@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500&family=Source+Code+Pro:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
}

.sidebar {
    background-color: rgb(223, 221, 221);
    font-family: 'Fira Sans', sans-serif;
    height: 100vh;
    transition: transform 0.3s ease-in;
}

.sidebar nav {
    width: 235px;
    margin: 60% 0 0 0;
}

.sidebar nav li {
    list-style: none;
    display: flex;
    font-size: 30px;
    margin: 0 0 10% 0;
}

.sidebar nav li:hover {
    background-color: black;
    border-radius: 20px;
}

.sidebar nav li:hover a {
    color: white;
}

.sidebar nav li a {
    text-decoration: none;
    color: black;
    margin: 0 auto;
}

.main {
    width: 90vw;
    background: 1px solid red;
}

.container {
    display: flex;
    max-width: 100%;
    height: 100vh;
    position: relative;
}

.infocontainer {
    height: 70vh;
    width: 70vw;
    margin: 125px auto;
    display: flex;
    justify-content: space-between;
}

.devInfo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 68%;
    font-family: 'Source Code Pro', monospace;
}

.hello {
    font-size: 40px;
}

.name {
    font-size: 45px;
    font-weight: bold;
    font-family: 'Fira Sans', sans-serif;
}

.about {
    font-size: 25px;
}

.moreabout {
    font-size: 15px;
    margin-top: 23px;
    font-family: 'Fira Sans', sans-serif;
}

.buttons {
    margin-top: 34px;
}

.btn {
    padding: 2px 9px;
    border-radius: 21px;
    color: white;
    background-color: dodgerblue;
    font-weight: bold;
    font-size: 12px;
    margin: 0px 1px;
    cursor: pointer;
}

.btn-sm {
    font-size: 13px;
    padding: 8px 15px;
    margin: 10px 0;
}

.btn:hover {
    background-color: white;
    color: dodgerblue;
}

.devPic {
    position: absolute;
    bottom: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    width: 20%; /* Adjust size as needed */
}

.devPic img {
    width: 100%;
    
}

.contactform {
    padding: 0 34px;
    padding-top: 130px;
    font-family: 'Fira Sans', sans-serif;
}

.contactform h1 {
    font-family: 'Source Code Pro', monospace;
    padding: 12px 0;
}

.contactform form div {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.contactform form div input {
    width: 26vw;
    border-radius: 5px;
    margin: 6px 0 0 0;
    padding: 3px;
    color: red;
}

#emailHelp {
    font-size: 11px;
    color: midnightblue;
    margin: 0 5px;
    padding: 3px 0 0 0;
}

#form-check {
    flex-direction: row;
}

#form-check input {
    width: 24px;
    margin: 3px 0;
}

.blogitem {
    margin: 20px;
    font-family: 'Fira Sans', sans-serif;
}

h1 {
    font-family: 'Fira Sans', sans-serif;
    margin: 23px;
}

p {
    font-family: 'Fira Sans', sans-serif;
}

.intro h2 {
    font-family: 'Fira Sans', sans-serif;
    margin: 12px;
}

.intro p {
    font-family: 'Source Code Pro', monospace;
    margin: 12px;
}

.skillcontainer {
    padding: 12px;
}

.skillItem {
    display: flex;
    align-items: center;
    font-family: 'Source Code Pro', monospace;
    font-weight: 900;
}

.skill {
    width: 265px;
    height: 6px;
    background-color: red;
    border: 2px solid black;
}

.hundred {
    width: 265px;
    background-color: blueviolet;
}

.fifty {
    width: 175px;
    background-color: aqua;
}

.t5 {
    width: 75px;
    background-color: yellow;
}

.n5 {
    width: 240;
    background-color: rgb(231, 73, 45);
}

.ety {
    width: 200px;
    background-color: rgb(36, 162, 235);
}

.sidebarGo {
    transform: translate(-443px, 0px);
    position: absolute;
}

.hamburger {
    position: absolute;
    cursor: pointer;
    top: 10px;
    left: 10px;
}

.cross {
    margin-left: 200px;
}

/* Media Queries for Responsiveness */
@media (max-width: 1000px) {
    .devPic {
        display: none;
    }

    .infocontainer {
        width: 90vw;
        margin: 60px auto;
    }

    .devInfo {
        width: 100%;
    }

    .contactform form div input {
        width: 60vw;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translate(-100%);
        width: 100%;
        height: auto;
    }

    .container {
        flex-direction: column;
    }

    .main {
        width: 100%;
    }

    .infocontainer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .devInfo {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .buttons .btn {
        width: 100%;
        padding: 10px;
    }

    .contactform form div input {
        width: 80vw;
    }
}
