* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    border: none;
    outline: none;
    scroll-behavior: smooth;
}

/* Navbar */

.logo {
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar a {
    display: inline-block;
    font-size: 20px;
    color: black;
    text-decoration: none;
    font-weight: 400;
    margin-left: 30x;
    transition: .3s;
    font-weight: bold;
}

/* <!-- Home --> */

.carousel-inner {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-image: url(Images/img1.avif);
}

.carousel-inner h1 {
    color: white;
    width: 100%;
    height: 100%;
    font-size: 40px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    font-family: "Playfair Display", serif;
}

.carousel-inner h1 span {
    color: aqua;
    font-size: 15px;
}

.social-logo {
    position: relative;
    top: 500px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 25px;
    padding-top: 45px;
}

.social-logo i {
    font-size: 24px;
    color: grey;
    border-radius: 50%;
    background-color: white;
    padding: 10px;
}

.social-logo i:hover {
    color: black;
}

/* <!-- About --> */
.row .btn {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 1px solid #000;
    margin: 10px;
}

.row .btn:hover {
    border: 2px solid #000;
    font-weight: bold;
}

/* HIRE STARTING */
.carousel-outer {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-image: url(Images/hire2.jpg);
    padding-top: 150px;
}

.carousel-outer p {
    color: white;
    width: 100%;
    height: 100%;
    font-size: 40px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    font-family: "Playfair Display", serif;
}

.carousel-outer .btn {
    border: 1px solid white;
    color: white;
    font-size: 20px;
}

.carousel-outer .btn:hover {
    font-weight: bold;
}

/* Pictures */
.photo {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    margin: 2px;
    height: 20vw;
    width: 50vh;
}

.img {
    width: 100%;
    height: 30vw;
    padding-bottom: 10px;
    padding-top: 20px;
    object-fit: cover;
}

@media (max-width: 768px) {

    .carousel-inner {
        height: auto;
        padding: 20px;
    }

    .carousel-inner h1 {
        font-size: 25px;
    }

    .carousel-inner h1 span {
        font-size: 15px;
    }

    .social-logo {
        top: 0;
        padding-top: 350px;
    }

    .img {
        padding: 10px;
        height: 60vw;
    }
}