@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue';
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.header {
    width: 100%;
    font-family: 'Bebas Neue', cursive;
    position: absolute;
    z-index: 100;
    background-color: lightgrey;
    border-top: 7px solid black;
    border-left: 7px solid black;
    
}


nav {
    height: 3.7em;
    display: flex;
    justify-content: space-between;
}

.logo {
    margin-left: 8px;
    margin-top: 4px;
}

.ico {
    width: 7vh;
    height: 7vh;
}

.logo h1 {
    align-items: baseline;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 40px;
    color: rgb(192, 20, 20)
}

.ul-items {
    display: flex;
    list-style: none;
    align-items: center;
    margin-right: 10px;
}

.ul-items li {
    margin-right: 1.5rem;
}

.ul-items li a {
    color: rgb(192,20,20);
    text-decoration: none;
    text-transform: uppercase;
    font-size: large;
}

.ul-items li a:hover { 
    border-bottom: 3px solid #000;
}

.hamburger-menu {
    display: flex;
}

.hamburger-menu .menu {
    font-size: 30px;
    color: rgb(194, 35, 35);
    cursor: pointer;
}

.main-section {
    width: 100%;
    height: auto;
    background-color: lightgrey;
    font-family: 'Bebas Neue';
    border: 7px solid black;
    overflow: hidden;
    z-index: 50;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 10rem;
    z-index: inherit;
}

.texts {
    margin-left: 4rem;
    text-transform: uppercase;
}

.texts h1 {
    color: grey
}

.texts .h1-big {
    font-size: 60px;
    color: rgb(61,60,60);

}

.texts p {
    border-top: 2px solid red;
    color: rgb(58, 58, 58);
    width: 40%;
    text-transform: lowercase;
}

.text-button {
    text-decoration: none;
    position: absolute;
    margin-top: .8rem;
    padding: 5px 20px;
    cursor: pointer;
    background-color: rgb(59,55,55);
    color: #fff;
    font-family: 'Bebas Neue';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    border: 3px solid grey;
}

.text-button:hover {
    border: 3px solid #fff;
}

.image {
    position: fixed;
    flex-direction: row-reverse;
    justify-content: right;
    scale: auto;
    z-index: 1;
    opacity: 60%;
    clip-path: polygon(25% 0%,100% 0%,100% 100%,5% 100%);
}
