body {
    font-family: 'Exo 2';
    color: #062449;
}
a {
    color: #000000;
    transition: .3s ease;
    &:hover {
        opacity: .6;
    }
}
img {
    width: 100%;
    max-width: 100%;
}

header {
    border-top: 15px solid #093161;
    img {
        margin-top: 4.25rem;
        margin-bottom: 7rem;
        width: 275px;
    }
}
.default-content {
    margin-bottom: 6rem;
}
.flag-img {
    margin-bottom: 2rem;
    margin-left: 1rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 3rem;
}
.machine-img {
    margin-bottom: 2rem;
    height: 200px;
    object-fit: contain;
    width: 100%;
}
footer {
    padding: 2.5rem 1rem;
    background-color: #EEF2F8;
}
@media screen and (max-width: 768px) {
    header {
        img {
            margin-top: 2.5rem;
            margin-bottom: 4rem;
        }
    }
    .grid-auto  {
        gap: 2rem;
    }
    .default-content {
        margin-bottom: 2rem;
    }
    .flag-img {
        margin-left: 0rem;
    }
    .machine-img {
        margin-bottom: 1rem;
    }

}
