@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.center{
    text-align: center;
}

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 200px;
}

.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(18, 161, 217);
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://img.freepik.com/free-photo/real-food-pyramid-assortment-top-view_23-2150238927.jpg?w=1060&t=st=1684946614~exp=1684947214~hmac=5c71ed3a98b867f9e294fabbc32c618a431b14fe3e37ae6a72c15a740232cbc6); */
    background-size: cover;
    background-position: center
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 100%;
    margin-top: 50px;
}

.home .content h1 {
    font-size: 3em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 75px;
    margin-bottom: 40px;
    text-align: center;
}

p{
    text-align: center;
}


.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);
}