@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,400;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1A1A1A;
    font-family: 'Poppins', sans-serif;
}

header {
    background: #121212;
    height: 60px;
    width: 100%;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 13px;
}

.menu h1 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}
.menu ul {
    display: flex;
    list-style: none;
    padding: 0;
}
.menu li {
    margin: 0 10px;
}
.menu li a {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.menu li a:hover {
    color: #e26f6f;
    border-bottom: 6px solid #e26f6f;
    border-radius: 4px;
}
.img_left {
    float: left;
    margin-top: 8.4rem;
}
.img_right {
    float: right;
    margin-top: 5.6rem;
}