
html, body { 
    height: 100%
}

body {
    background-color: black;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-family: 'Ibarra Real Nova', serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.background {
    background-image: url('../images/cambodge.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    z-index: 1;
}

.container {
    z-index: 2;
}

.menu {
    text-align: center;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 7px;
    list-style: none;
}

.first-menu a {
    text-decoration: none;
    transition: all 0.17s ease-in-out;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    position: relative;
}

.menu a:hover {
    border: 1px solid #fff;
    text-decoration: none;
}

.menu img {
    height: 30px;
    width: 30px;
    transition: all 0.10s ease-in-out;
}

.menu a {
    position: relative;
}

.menu a:hover img {
    height: 33px;
    width: 33px;
}

@media screen and (min-width: 1024px) {
    .menu .menu-contact {
        margin-left: 30px;
    }
}

.menu a:not(.voyages):hover:before {
    transition: all 0.17s ease-in-out;
    content: attr(data-title);
    position: absolute;
    top: -28px;
    left: auto;
    background: white;
    border-radius: 3px;
    padding: 1px 7px;
    right: auto;
    font-size: 13px;
}

.menu a:not(.voyages):hover:after {
    transition: all 0.17s ease-in-out;
    content: "";
    position: absolute;
    left: auto;
    top: -10px;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 2.5px 0 2.5px;
    border-color: #fff transparent transparent transparent;
}

.logo {
    display: flex;
    margin: 0 auto 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid white;
    height: 200px;
    width: 200px;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    
}

.tagline {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 50px;
}
