@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(81, 74, 214));
    background-clip: text;
}

.container {
    padding: 10px 5%;
}

.nav-bar img {
    width: 150px;
}

.nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.nav-bar ul li {
    list-style: none;
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
}

.nav-bar ul li:hover {
    border: none;
    border-radius: 20px;
    background: rgb(0, 0, 0);
    color: #fff;
    cursor: pointer;
}

.contact-btn {
    width: 150px;
    height: 45px;
    border: none;
    border-radius: 15px;
    background-color: #fff;
    color: blue;
    font-size: 20px;
    cursor: pointer;
}

#body {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.intro {
    flex-basis: 45%;
}

.intro h1 {
    margin-top: 100px;
    font-size: 45px;
}

.intro p {
    font-size: 30px;
    font-weight: 500;
}

.intro h1 span {
    color: rgb(25, 25, 255);
}

.bg-img {
    flex-basis: 50%;
    margin-top: 100px;
    margin-left: 50px;
    margin-top: 100px;
    padding-left: 100px;
}

.bg-img img {
    width: 110%;
}

.links {
    margin-top: 30px;
    display: flex;
}

.links h3 {
    font-size: 20px;
    font-weight: 500;
}

.links a {
    display: inline-block;
    margin-left: 10px;
    margin-top: 2px;
    padding-left: 5px;
    font-size: 20px;
}