* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.navbar {
    z-index: 999;
    position: fixed;
    background-color: white;
    width: 100%;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar .menu li a{
    color: black;
    font-size: x-large;
    font-family: 'Oxygen', sans-serif;
    padding: 20px;
    transition: color 0.5s ease;
    cursor: pointer;
    text-decoration: none;
}

.navbar .menu li a:hover {
    background-color: black;
    color: white;
}

.navbar .menu-btn {
    font-size: 23px;
    cursor: pointer;
    float: right;
    margin-left: auto;
    display: none;
}
 
.home-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.home-container p {
    font-size: 4rem;
    padding: 0.5rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: center;
    overflow: hidden;
  }
  
.home-container .cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
  }
.cursor.typing {
    animation: none;
  }
  @keyframes blink {
    0%  { background-color: #ccc; }
    49% { background-color: #ccc; }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100%  { background-color: #ccc; }
  }

.welcome-message {
    font-family: 'Press Start 2P', cursive;
    font-size: 90px;
    color: rgb(238, 255, 0);
} 

.home {
    background: url("../images/motion.svg") no-repeat;
    background-size: cover;
    display: flex;
    height: 100vh;
    color: white;
    min-height: 500px;
}

section {
    padding: 100px 0;
}

.about {
    font-family: 'Source Code Pro', monospace;
    margin-top: 120px;
}

.page-title {
    position: relative;
    font-family: 'Tourney', cursive;
    font-size: 57px;
    margin-bottom: 60px;
    padding-bottom: 10px;
    align-items: center;
    text-align: center;
    text-decoration: underline 4px;
}

.about .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about .about-container .left {
    width: 40%;
    align-items: center;
}

.about .about-container img {
    display: flex;
    height: 400px;
    width: 400px;
    object-fit: contain;
    border-radius: 6px;
    display: none;
}

.about .about-container .visible {
    display: block;
    animation: slider 1s;
}

@keyframes slider {
    0% {
        opacity: 0;
    }
    35% {
        opacity: 0.5;
        transform: opacity linear;
    }
    75% {
        opacity: 1;
        transform: opacity linear;
    }
}

.about .about-container .left #caption {
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 15px;
    margin-right: 10px;
}

.about .about-container .right {
    width: 55%;
}

.about .about-container .right .text h2 {
    font-size: 50px;
    font-weight: bolder;
    margin-bottom: 20px;
}

.about .about-container .right .text p {
    text-align: justify;
    font-size: large;
    padding: 0 10px 0 10px;
}

.about .about-container .hire-me {
    font-family: "Encode Sans SC", sans-serif;
    font-size: 30px;
    margin-top: 40px;
}

.about .about-container .download {
    font-family: "Encode Sans SC", sans-serif;
    font-size: 20px;
    background-color: rgba(68, 68, 240, 0.74);
    padding: 10px;
    margin-top: 40px;
    border-radius: 7px;
    transition: 0.2s ease-in;
}

.about .about-container .download a {
    color: white;
    text-decoration: none;
}

.about .about-container .download:hover {
    background-color: white;
    border: solid;
    border-color: rgba(68, 68, 240, 0.74);
}

.about .about-container .download:hover a{
    color: rgba(68, 68, 240, 0.74);
}

.experience .page-title {
    color: white;
}

.experience .continuation {
    display: inline-block;
    text-decoration: underline 4px;
}

.experience .link-to-company img {
    height: 25px;
    width: 25px;
    cursor: pointer;
    margin-top: 20px;
}

.experience .experience-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.experience .experience-container .card {
    margin-top: 50px;
    flex: 100%;
    padding: 40px;
    border: solid white 2px;
    border-radius: 10px;
    transition: 0.3s ease-out;
}

.hide {
	display: none;
}

.experience .experience-container .scroller {
	margin-top: 25px;
	flex: 100%;
	padding: 10px;
	text-align: center;
}

.experience .experience-container .scroller img {
	height: 25px;
	width: 25px;
	cursor: pointer;
}

.experience .experience-container .card h2 {
    font-family: "Roboto Mono", monospace;
    font-weight: 900;
    font-size: 40px;
    padding: 20px;
    text-decoration: underline 2px ;
    text-align: center;
}

.experience .experience-container .card:hover {
    transform: scale(1.02);
}

.experience .experience-container .company {
    font-size: x-large;
    padding: 10px;
}

.experience .experience-container .company-name {
    font-family: "Prompt", sans-serif;
}

.experience .experience-container .logo {
	height: 22px;
	width: 25px;
	margin-top: 5px;
	margin-left: 10px;
}

.experience .experience-container .job {
    font-family: "Encode Sans SC", sans-serif;
    padding: 10px;
}

.experience .experience-container:hover {
    transition: 0.3s ease-in;
}

.skills p {
    font-family: "Ubuntu", sans-serif;
    font-size: x-large;
}

.skills .skills-container {
    font-family: "Prompt", sans-serif;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    overflow: hidden;
}

.skills .skills-container .column {
    margin: 40px auto 40px auto;
    width: 33%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.skills .skills-container .skill-tab {
    width: 100%;
}

.skills .skills-container .text {
    background-color: rgba(233, 233, 233, 0.753);
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.skills .sub-title {
    font-size: 40px;
    font-family: 'Roboto Mono', monospace;
    margin-top: 100px;
    text-align: center;
    background-color: black;
    color: white;
}

.project {
    color: white;
    display: block;
}

.project .page-title {
    color: white;
}

.project .project-container {
    font-family: "Prompt", sans-serif;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    overflow: hidden;
    font-size: larger;
}

.project .project-container .column-project {
    padding: 20px;
    width: 50%;
}

.project .project-container .project-title {
    font-size: xx-large;
    font-family: "Roboto Mono", monospace;
}

.project .project-container .project-description .made {
    display: inline-block;
    margin-right: 10px;
}

.project .project-container .project-lang {
    display: flex;
    justify-content: center;
}

.project .project-container .made-red {
    color: red;
}

.project .project-container .made-green {
    color: greenyellow;
}

.project .project-container .made-blue {
    color: skyblue;
}
 
.project .project-container .logo {
    float: inline-start;
    color: white;
    padding: 5px;
    font-size: 30px;
}

.project .more{
    color: yellow;
    text-decoration: none;
    font-size: x-large;
}

.contact .contact-container p {
    font-size: x-large;
    text-align: center;
}

.contact .socials {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 30px;
}

.contact .socials ul{
    list-style: none;
    font-size: xx-large;
}

.contact .socials li {
    display: inline-block;
    align-items: center;
    padding: 20px 20px 0 20px;
}

.contact .socials a {
    color: black;
}

footer {
    text-align: center;
    background-color: black;
    color: white;
    padding: 50px 0 70px;
    font-family: "Encode Sans SC", sans-serif;
}

 
@media (max-width: 1140px) {
    .max-width {
        padding: 0 50px;
    }

    .about .about-container .left img {
        height: 350px;
        width: 350px;
        object-fit: contain;        
    }
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }

    .navbar .menu-btn {
        padding-top: 10px;
        display: block;
        z-index: 999;
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        background-color: white ;
        left: -100%;
        top: 0;
        text-align: center;
        transition: 0.3s ease-out;
    }

    .navbar .menu-active{
        left: 0;
        transition: 0.3s ease-in;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 0;
        transition: 0.5s ease-in;
    }

    .navbar .menu li a:hover { 
        font-size: 30px;
        color: black;
        background-color: white;
    }

    .home-container p {
        font-size: 1.5rem;
    }

    .about .about-container .column {
        width: 100%;
    }

    .about .about-container .left img{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
        width: 100%;
        display: none;
    }

    .about .about-container .right {
        flex: 100%;
    }

    .about .about-container #caption {
        margin-bottom: 100px;
    }

    .about .about-container .visible {
        display: block;
    }

    .experience .continuation {
        display: block;
    }

    .skills .skills-container .column {
        margin: 40px auto 40px auto;
        width: 50%;
        display: flex;
    }

    .project .project-container .column-project {
        padding: 20px;
        width: 100%;
    }

    .project .project-container .project-description .made {
        display: block;
        margin-right: 10px;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 10px;
    }

    .navbar .menu-btn {
        padding-top: 10px;
        display: block;
        z-index: 999;
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        background-color: white ;
        left: -100%;
        top: 0;
        text-align: center;
        transition: 0.3s ease-out;
    }

    .navbar .menu-active{
        left: 0;
        transition: 0.3s ease-in;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 0;
        transition: 0.5s ease-in;
    }

    .navbar .menu li a:hover { 
        font-size: 30px;
        color: black;
        background-color: white;
    }

    .home-container p {
        font-size: 1.5rem;
    }

    .about .about-container .column {
        width: 100%;
    }

    .about .about-container .left img{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
        width: 100%;
        display: none;
    }

    .about .about-container .left .visible {
        display: block;
    }

    .about .about-container .right {
        flex: 100%;
    }

    .page-title {
        font-size: 45px ;
    }

    .experience .continuation {
        display: block;
    }

    .skills .skills-container .column {
        margin: 40px auto 40px auto;
        width: 100%;
        display: flex;
    }
    
    .project .project-container .column-project {
        padding: 20px;
        width: 100%;
    }

    .project .project-container .project-description .made {
        display: block;
        margin-right: 10px;
    }
}
