

body{
    
    background-repeat: no-repeat;
    background-size: contain;
    font-family: poppins;
    overflow: hidden;
    height: 100vh;
    
}

.background{
    background-image: url("../img/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.container{
    position: relative;
    z-index: 1;
	height: 100vh;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
}

a{
    color: #981c38;
    text-decoration: none;
}

.header{
    margin-top: 2rem;
    margin-bottom: 9rem;
}

.header img{
    width: 200px;
}

.middle{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9rem;
}

.middle img{
    width: 650px;
}

.bottom{
    display: flex;
    justify-content: space-between;
    align-items: end;
	padding-bottom: 2rem;
}

.text-header{
    font-weight: 600;
    font-size: 18px;
    color: #6f4c2e;
}

.left-text h3{
    font-size: 16px;
    color: #6e4b2f;
    font-weight: 400;
}

.right-text{
    text-align: right;
    
}

.tel{
    font-weight: 700;
    font-size: 28px;
}

.website{
    font-weight: 350;
    font-size: 29px;
}

.website span{
    font-weight: 700;
}



@media (max-width: 767px){
    .middle img{
        width: 400px;
    }

    .tel{
        font-weight: 700;
        font-size: 20px;
    }
    
    .website{
        font-weight: 350;
        font-size: 21px;
    }

    .text-header{
        font-weight: 600;
        font-size: 14px;
        color: #6f4c2e;
    }
    
    .left-text h3{
        font-size: 12px;
        color: #6e4b2f;
        font-weight: 400;
    }
}

@media (max-width: 467px){
    .middle img{
        width: 250px;
    }
    .bottom{
        flex-direction: column;
        align-items: unset;
    }
}

@media (max-width: 320px){
    .middle img{
        width: 100px;
    }
}