*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;

    background-image: url("images/backgroundImg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%
}

.menu{
    height: 100%;
    display: flex;
    width: 33%;
    align-items: center;
    justify-content: center;
}

.menu li{
    list-style: none;
    margin-bottom: 30px;
}
.menu a{
    font-family:Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 24px;
    color: black;
}

.header{
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;

    h1{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 48px;
        text-align: center;
    }
    h2{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 22px;
        text-align: center;
        margin-top: 10px;
    }
}

.header-undertext{
    margin-top: 30px;
}
.filler{
    width: 33%;
    display: flex;
    justify-content: center;

    .links{
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;

        h3{
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            margin-bottom: 10px;
            text-align: center;
        }

        li{
            margin-bottom: 6px;
            font-size: 24px;
            font-family:Arial, Helvetica, sans-serif;

        }
    }
}

.destinations{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    margin-top: 30px;

    li{
        margin-bottom: 6px;
        font-size: 24px;
        font-family:Arial, Helvetica, sans-serif;

    }
}

.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    img{
        height: 50px;
        margin: 0 10px;
    }
}

.information-text{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    li{
        margin-bottom: 18px;
        font-size: 18px;
        font-family:Arial, Helvetica, sans-serif;

    }
}
    