* {
    box-sizing: border-box;
}

body {
    margin: auto;
    padding: 0;
}

.full_page_container {
    background-image: url("images/image1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-rows: repeat(10, 1fr);
    grid-template-columns: 1fr;
    width: 100vw;
    height: 100vh;
    grid-template-areas: "top" "navi" "bottom" "bottom" "bottom" "bottom" "bottom" "bottom" "bottom" "bottom";
}

.topbar {
    grid-area: top;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact_topbar {
    margin: 0;
    padding: 0;
    line-height: 0.1;
}

.call_topbar-topbar {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.mail_topbar_topbar {
    display: flex;
    align-items: center;
    color: yellow;
}

.location_topbar {
    margin: 0;
    padding: 0;
}

.location_topbar_topbar {
    padding: 0;
}

.navbar {
    grid-area: navi;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: space-evenly;
    color: white;
    align-items: center;
}

#services {
    cursor: pointer;
}

#services:hover {
    color: #ffb100;
}

#gallery {
    cursor: pointer;
}

#gallery:hover {
    color: #ffb100;
}

#about {
    cursor: pointer;
}

#about:hover {
    color: #ffb100;
}

.bottombar {
    grid-area: bottom;
    color: wheat;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "one two";
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 20px;
}

.decotext {
    grid-area: two;
    background-color: rgba(0,0,0,0.5);
    font-size: 30px;
    padding-left: 100px;
    padding-top: 50px;
}

.mainpage_button {
    border: 2px solid #ffb100;
    background-color: transparent;
    color: wheat;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
}

.mainpage_button:hover {
    background-color: #ffb100;
    color: black;
}

@media screen and (max-device-width: 400px) {
    .full_page_container {display: none;}
    .phone_full_page_container {
        overflow: scroll;
        background-image: url("images/phone2.jpg");
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: grid;
        grid-template-rows: repeat(10, 1fr);
        grid-template-columns: 1fr;
        width: 100vw;
        height: 100vh;
        grid-template-areas: "topbar" "imagebar" "imagebar" "imagebar" "imagebar" "imagebar" "imagebar" "imagebar" "imagebar" "imagebar";
    } 
}

.topbar {
    grid-area: topbar;
    color: white;
    font-family: 'Cedarville Cursive', cursive;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: larger;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.phone_call {
    padding: 10px;
}

.imagebar {
    grid-area: imagebar;
}

.phone_starting_quotes {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    color: white;
    font-family: 'Cedarville Cursive', cursive;
    font-size: larger;
    position: relative;
    top: 40%;
}

.phone_address_quotes {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    color: white;
    font-family: 'Cedarville Cursive', cursive;
    font-size: larger;
    position: relative;
    top: 60%;
}

.phone_mainpage_button {
    border: 2px solid #ffb100;
    background-color: transparent;
    color: wheat;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
}

@media screen and (min-device-width: 410px)  {
    .phone_full_page_container {
        display: none;
    }    
    .full_page_container {
        display: block;
    }
}
