body::before {
    display: block;
    content: "";
    height: 56px;
}

body {
    background: #eeeeee;
}

#top {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/topimg.jpg") 0 50% no-repeat;
    background-size: cover;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.version {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 12px;
    color: whitesmoke;
    letter-spacing: 0;
}

.text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.text-box:hover {
    transform: scale(1.1);
}

#apps {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.box-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.box-container .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.box-container .box .img {
    width: 100px;
    height: 100px;
    box-shadow: 18px 18px 30px rgba(0, 0, 0, 0.1),
    -18px -18px 30px rgba(255, 255, 255, 1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: box-shadow 0.2s ease-out;
}

@media (min-width: 1200px) {
    .box-container .box .img {
        margin-left: 20px;
        margin-right: 20px;
        height: 200px;
        width: 200px;
    }

    .box-container .box .img img {
        transform: scale(1.5);
    }

    .box-container .box p {
        margin-top: 20px;
        font-size: 24px;
    }
}

.box-container .box .img img {
    width: 60px;
    transition: width 0.2s ease-out;
}

.box-container .box p {
    color: slategrey;
}

.box-container .box .img:hover {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(255, 255, 255, 1),
    inset 18px 18px 30px rgba(0, 0, 0, 0.1),
    inset -18px -18px 30px rgba(255, 255, 255, 1);
    transition: box-shadow 0.2s ease-out;
}

.box-container .box .img:hover img {
    width: 58px;
    transition: width 0.2s ease-out;
}

#contact {
    background-color: #203a48;
}

#contact input {
    background: #203a48;
    border-color: cadetblue;
    border-radius: 20px;
}

#contact textarea {
    background: #203a48;
    border-color: cadetblue;
    border-radius: 20px;
}

#contact button {
    width: 100px;
    height: 50px;
    background: #dddddd;
    border-color: cadetblue;
    border: 1px;
    border-radius: 20px;
}


