﻿* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: 'Poppins', 'sans-serif';
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../images/backrooms.PNG') no-repeat;
    background-size: auto;
    background-position: center;
    background-color: #313234;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #560e4e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.navigation-head a {
    position: relative;
    font-size: 1.1em;
    color: white;
    text-decoration:none;
    font-weight: 500;
    margin-left: 40px;
}

.navigation-head a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}

.navigation-head a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

.image-head {
    width: 150px;
    border-radius: 75px;
    border-style: double;
    border-color: white;
    border-width: 5px;
}

.text-head {
    color: salmon;
    font-size: 120px;
}
