@import url('https://fonts.googleapis.com/css?family=Montserrat:400,900');
*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
body{
    width: 100vw;
    height: 100vh;
}
a{
    text-decoration: none;
    color: #000;
}
.wrapper{
    position: relative;
    width: 950px;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    top: 20%;
}
.logo{
    width: 100%;
    position: relative;
    text-align: center;
}
.navigasi{
    width: 100%;
    position: relative;
    display: flex;
}
.box{
    width: 33.333%;
    height: auto;
    padding: 20px;
    text-align: center;
    margin: 5px;
    border-radius: 5px;
    border: 1px dashed black;
}
.box:hover{
    border: 1px solid black;
    cursor: pointer;
}