footer {
    position: fixed;
    display: block;
    background-color: darkgrey;
    height: 15px;
    padding: 3px;
    left: 0;
    right: 0;
    bottom: 0;
}

.logo {
    display: inline-block;
    width: 120px;
    margin-top: 15px;
    margin-left: 10px;
}

.menu {
    float: right;
}

.menu a {
    float: right;
    color: white;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 20px;
}

.menu a.active {
    background-color: red;
    color: white;
}

.menu a:hover {
    background-color: darkgrey;
    color: black;
}

nav {
    width: 100%;
    margin: auto;
    display: flex;
    line-height: 40px;
    top: 0;
    background: black;
}

nav ul {
    list-style-type: none;
    margin: 5;
    padding: 0;
    overflow: hidden;
}

nav ul li {
    float: left;
}

nav ul li a {
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 0px 10px 0px 10px;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

nav ul li a:hover {
    text-decoration: none;
}

body {
    background-image: url(../images/toko.jpg);
    background-size: 1300px;
    margin: 0px;
}

.wrapper {
    width: 1300px;
    margin: auto;
    position: relative;
}


.kotak {
    width: 350px;
    height: 390px;
    background: rgba(0,0,0,0.7);
    margin: 20px auto;
    box-shadow: 0 0 10px purple;
}

.kotak img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-left: 120px;
    margin-top: 20px;
    filter: drop-shadow(2px 13px 5px purple);
}


.kotak h1{
    text-align: center;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    font-size: 25px;
}

.kotak h2{
    color: red;
    font-weight: bolder;
    font-size: 20px;
    text-align: center;
}

.kotak p{
    color: white;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 15px;
}

.button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 105px;
}

.button .email{
    width: 145px;
    background-color:red;
    padding: 8px 0;
    color: white;
    border: 0;
    font-size: 17px;
    cursor: pointer;
    border-radius: 5px;
}

.button .email a{
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: white;
}

.button .email:hover{
    background: grey;
    transition: 0.2 ease;
}