* {
    padding: 0;
    margin: 0;
    font-family: Roboto, sans-serif;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    align-items: center;
}

.navbar p {
    font-size: 24px;
    font-weight: bold;
}

.navbar ul {
    display: flex;
    list-style-type: none;
}

.navbar ul li {
    margin-left: 15px;
}

.navbar a {
    text-decoration: none;
    color: white;
}

.navbar a:hover {
    color: rgb(245, 195, 195);
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(112, 67, 67);
    color: white;
    gap: 25px;
    padding: 5px;

}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 75px 0 125px 0;
}

.section img {
    max-width: 400px;
    border-radius: 15px;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.description button {
    align-self: flex-start;
    padding: 8px;
    border-radius: 5px;
}

.description button:hover {
    background-color: rgb(0, 68, 255);
    color: white;
}

.description .text {
    font-size: 18px;
}

.description .heading {
    font-size: 48px;
    font-weight: bold;
}

.info-container {
    background-color: rgb(197, 223, 226);
    padding: 100px;
}

.info-container .heading {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.images-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3em;
    flex-wrap: wrap;
}

.image {
    width: 200px;
    height: 200px;
    box-shadow: 0px 0px 15px rgb(23, 23, 70);
}

.frontend {
    background-image: url(./images/frontend.jpg);
    background-size: 350px auto;
    background-position: center;
}

.backend {
    background-image: url(./images/backend.jpg);
    background-size: 350px auto;
    background-position: center;
}

.fullstack {
    background-image: url(./images/fullstack.jpg);
    background-size: 350px auto;
    background-position: left;
}

.quote-section {
    background-color: rgb(103, 115, 131);
    color: white;
    display: flex;
    justify-content: center;
    padding: 100px 5px;
}

.quote-here {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.quote {
    font-size: 36px;
}

.author {
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
}

.learn-more {
    display: flex;
    justify-content: center;
    background-color: rgb(197, 223, 226);
}

.alert {
    box-sizing: border-box;
    margin: 100px 0;
    display: flex;
    background-color: rgb(158, 71, 71);
    color: white;
    padding: 35px 5vw;
    border-radius: 5px;
    gap: 30px;
    align-items: center;
}

.alert-button a {
    text-decoration: none;
    color: white;
}

.alert-button:hover {
    background-color: rgb(247, 88, 88);
}

.alert-button {
    border: 2px solid white;
    padding: 5px;
    border-radius: 5px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 5px;
    background-color: rgb(25, 27, 41);
    color: white;
}