* {
    font-family: 'Roboto Mono';
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
nav {
    display: flex;
    justify-content: space-around;
    background-color: black;
    color: white;
    padding: 10px 0;
}
.logo {
    font-size: 22px;
    font-weight: bolder;
}
nav ul {
    display: flex;
    gap: 50px;
    align-items: center;
}
nav ul li {
    list-style-type: none;
    font-size: 18px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
nav ul li a:hover {
    color: rgb(48, 45, 45);
    text-decoration: none;
    transition: all 0.5s;
}
.hero {
    background-color: rgb(242, 247, 246);
    height: 65vh;
    display: flex;
    justify-content: center;
    gap: 130px;
    align-items: center;
    letter-spacing: 2px;
    font-weight: bold;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-left .welcome {
    font-size: 60px;
}
.hero-left .dev-intro {
    font-size: 40px;
}
.hero-right img {
    height: 30vh;
    border-radius: 15px;
}
.button-container {
    padding: 10px 0;
}
.btn {
    background-color: rgb(242, 247, 246);
    padding: 7px 10px;
    margin: 0 2px;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bolder;
    transition: all 0.5s;
}
.btn:hover {
    color: rgb(242, 247, 246);
    background-color: black;
    border: 2px solid rgb(242, 247, 246);
    border-radius: 4px;
}
.news-bulletin {
    overflow: hidden;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-weight: bolder;
    font-size: 25px;
}
.news span{
    display: inline-block;
    margin-right: 40px;
    animation: scroll 10s linear infinite;
}
@keyframes scroll {
    from {transform: translateX(100vw);}
    to {transform: translateX(0vw);}
    to {transform: translateX(-100vw);}
}
.project {
    background-color: rgb(242, 247, 246);
    display: flex;
    align-items: center;
    border-top: black;
    padding: 20px 0;
}
.project-image img {
    width: 25vw;
    height: 30vh;
    margin: 35px;
    border-radius: 25px;
}
.project-info {
    display: flex;
    flex-direction: column;
    padding: 40px;
}
.project-info .description {
    font-size: 28px;
    padding: 10px 0;
    font-weight: bold;
}
.project-info p {
    padding: 12px 0;
}
.row-reverse {
    flex-direction: row-reverse;
}
@media screen and (max-width: 950px) {
    nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero {
        flex-direction: column-reverse;
        gap: 12px;
    }
    .hero-left {
        align-items: center;
    }
    .project {
        padding: 1px;
    }
}
@media screen and (max-width: 650px) {
    .hero-left .welcome {
        font-size: 50px;
        text-align: center;
    }
    .hero-left .dev-intro {
        font-size: 30px;
        text-align: center;
    }
    .project {
        flex-direction: column;
    }
    .project-image img {
        width: 80vw;
        margin: 5px 35px;
    }
    .project-info {
        padding: 15px 25px;
    }
}