* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.main {
    width: 100vw;
    height: 100vh;
    background-color: #ffeddd;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.logo {
    width: 250px;
    height: 100px;
}
.logo img {
    width: 100%;
    height: auto;
}

.calltoaction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.calltoaction a {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    color:#529643;
    padding: 0.5rem;
}
.phonenumber p {
    margin-top: 2.5rem;
    font-size: 1.37rem;
    font-weight: 600;
    text-decoration: underline;

}
.menubutton {
    width: 100px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
}
button {
    width: 100px;
    height: 40px;
    background-color: #529643;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    color: rgb(236, 236, 236);
    border: none;
}
button:hover {
    background-color: #6dab5f;
    cursor: pointer;
    color: white;
}
.menubutton a, .calltoaction a {
    text-decoration: none;
}