body {
    padding: 5vw 10vw;
    font-family: Arial;
    color: blue;
}

#header {
    display: flex;
}

img {
    height: 25vh;
    max-height: 100%;
}

.imgbox {
    width: 20vw;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#title {
    width: 40vw;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: bolder;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
}

#maintitle {
    font-size: 25px;
}

.button {
    background-color: #f44336;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.button:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}