@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

:root {
    --main-bg-color: #020C18;
}

header {
    top: 0;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bg-img {
    background-image: url("highres-entrance-background_1920x1080.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-color: var(--main-bg-color);
}

.title {
    font-size: 4rem;
    text-shadow: 0 3px 5px #213460, 0 12px 5px #213460; 
    color: rgba(255,255,255,0.9); 
}

header button {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    border-radius: 5px;
    background-color: #464656D2;/*#565656D2;*/
    color: #E6E6E6;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

header button:hover {
    background-color: #242424EA;
}

section {
    padding: 1.8rem 0; /*3em*/
    background-color: #E6E6E6;
}

.container, .container__narrow {
    margin-inline: auto;
    width: min(90%, 70.5rem);
}

h3 {
    text-align: center;
    margin-bottom: 2.5em;
}

.container__narrow {
    width: min(90%, 20.5rem);
}

.social {
    display: flex;
    padding: 0 3.5vw;
    align-items: center;
    justify-content: space-around;
}

.social-item {
    margin: 0 3.5em;
}

a {
    color: #242424;
    text-decoration: none;
}

a:hover {
    color: var(--main-bg-color);
}


/*
.isometric {
    -moz-transform: skew(45deg, -30deg);
    -webkit-transform: skew(45deg, -30deg);
    -o-transform: skew(45deg, -30deg);
    -ms-transform: skew(45deg, -30deg);
    transform: skew(45deg, -30deg);
}
