@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 180px 15px 80px;
    transition: 0.5s ease;
}

header .brand {
    color: #fff;
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar ul {
    overflow: auto;
}

.navbar ul {
    list-style: none;
    float: right;
    padding: 16px 12px;
    margin: 0px 10px;
}

ul li {
    display: inline-block;
}

ul li a {
    text-decoration: none;
    color: #fff;
    border-radius: 2px;
    padding: 12px 20px;
}

ul li a:hover {
    background-color: rgb(255, 166, 64);
    color: black;
    transition: 0.3s ease;
}

section {
    padding: 100px 70px;
}


.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: bisque;
    background-size: cover;
    background-position: center;
}

.banner {
    background-color: rgb(0, 200, 255);
    border-radius: 40px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.home .banner h1 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 100;
    font-style: normal;
    padding-top: 200px;
    font-size: 5em;
}

img {
    position: relative;
    flex-direction: column;
    height: 400px;
    width: 400px;
}


.home .media-icons {
    z-index: 888;
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
}

.home .media-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
}

.home .media-icons a:hover {
    transform: scale(1.3);
}

/* excercise */

.excercise {
    padding: 80px 40px 40px 80px;
}
h2{
    font-size: 1.5em;
    line-height: 50px;
    font-weight: bold;
}

.info{
    font-size: 1.5em;
    font-family: 'Noto Sans', sans-serif;
    padding: 20px;
}
h3{
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5em;
}

.home h2 {
    margin-top: 40px;
    color: rgb(58, 58, 58);
    font-size: 2em;
}

img{
    position: relative;
    width: auto;

}

footer {
    background: rgb(60, 60, 60);
    height: 500px;
}

.footer-items {
    height: 500px;
    width: fit-content;
    margin: auto;
}

.footer-items p {
    color: #fff;
}

.footer-items a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    padding: 9px;
}

.footer-items a:hover {
    color: rgb(142, 146, 146);

}

.footer-items a i {
    padding-right: 12px;
}

.brand-1 {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.center {
    text-align: center;
}

/* Utility Classes */

h1 {
    font-size: 2.5em;
    font-family: 'Noto Sans', sans-serif;
}

.h-secondary {
    font-size: 2.3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    padding: 12px;
}