@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    padding: 0;
    margin: 0;
    background-color: #cc9c1c;
}

.building-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.building-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    width: 100%;
    box-sizing: border-box;
    background-color: #010042;
}

.building-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.building-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

@keyframes tractorMoving {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(200px);
    }
}

.tractor-moving {
    width: 200px;
    overflow: hidden;
    margin-top: 50px;
    border-bottom: 1px solid gold;
}

.tractor-moving img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation-name: tractorMoving;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 10s;
}

.building-disclaimer {
    margin-top: 15px;
    font-size: 18px;
    color: white;
    font-weight: 300;
    color: gold;
}

.building-header h1 {
    font-weight: 300;
}

.building-header img {
    width: 250px;
}

h1, h2 {
    text-transform: uppercase;
}

.about-wrapper {
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    max-width: 600px;
    margin: auto;
}

.contacts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacts-wrapper a {
    text-decoration: none;
    color: black;
}

.contacts-wrapper a:hover {
    text-decoration: underline;
}

.social-networks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-network img {
    width: 32px;
    height: 32px;
}