@font-face {
    font-family: "mont";
    src: url("./Montserrat-Medium.ttf");
    font-weight: 400;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: mont;
}

html,body{
    height: 100%;
    width: 100%;
}

main{
    height: 100%;
    width: 100%;
    background-color: #b57533;
}

.main-container{
    height: 100%;
    width: 100%;
    position: relative;
}

.img-container{
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    img{
        position: absolute;
        top:30%;
        height: 100%;
        width: 100%;
        scale: 2;
        object-fit: contain;
        object-position: center;
        animation: spin 15s linear infinite;
    }
}

.content-container{
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(
        to top,
        #b57533 20%,
        rgba(181, 117, 51, 0.85) 45%,
        rgba(181, 117, 51, 0) 70%
    );
}



.text-container{
    position: absolute;
    width: 100%;
    height: 30%;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: black;
    /* background-color: #b57533; */
    text-align: center;
    font-size: 1.3rem;
    /* box-shadow: 0 -100px 100px -5px rgba(181, 117, 51, 1); */
    h1{
        margin-bottom: 0.7rem;
    }
}

.footer-container{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    /* background-color: #b57533; */
    img{
        align-items: center;
        height: 100%;
        width: 97%;
    }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}