#home {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
#main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
#copyright {
    padding: 1rem;
    background-color: #E88D2B;
    color: white;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}
#copyright a {
    color: white;
}
#copyright a:hover {
    color: white;
}
img {
    max-width: 100%;
}
@media only screen and (max-width: 1599px) {
    #main {
        gap: 2rem;
    }
    #logo-wrapper img {
        width: 400px;
    }
}
@media only screen and (max-width: 1199px) {
    #main {
        gap: 3rem;
    }
    #logo-wrapper img {
        width: 340px;
    }
}
@media only screen and (max-width: 991px) {
    #main {
        gap: 5rem;
    }
    #logo-wrapper img {
        width: 250px;
    }
}
@media only screen and (max-width: 767px) {
    #main {
        gap: 1rem;
    }
    #logo-wrapper img {
        width: 150px;
    }
    #copyright {
        font-size: 12px;
    }
}