
body{
    margin: 0;
    padding: 0;
    display: block;
    background-color: #000000;
    box-sizing: border-box;
    font-family: "Poppins";
}

header{
    position: absolute;
    flex-wrap: wrap;
    width: 100%;
    height: 100px;
    background-color: #191825;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.primary_button{
    position: absolute;
    margin-left: 40px;
    width: 150px;
    height: 40px;
    font-weight: 700;
    font-size: 20px;
    border: hidden;
    transform: skewX(-20deg);
    background-color: #EEEEEE;
    color: #191825;
}

.logo_place{
    display: flex;
    position: relative;
    justify-content: start;
    margin-left: 50px;
}

.logo_place h1{
    position: relative;
}

.logo_place h1 a{
    text-decoration: none;
    color: #EEEEEE;
}

.login_place{
    position: relative;
    display: flex;
    right: 50px;
    top: 30px;
}

.login_place a{
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.page_body{
    position: absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    background-color: transparent;
    width: auto;
    padding: 20px;
    left: 100px;
    right: 100px;
    top: 150px;
    min-height: 50vh;
}

.bottom_menu{
    display: none;
}

.navigatio_menu{
    padding: 35px 0 0 0;
    position: relative;
    display: flex;
}

.navigatio_menu a{
    text-decoration: none;
    font-size: 1.5rem;
    color: #EEEEEE;
}

.navigatio_menu a:hover{
    text-decoration: underline;
}