.home {
    height: calc(100vh - var(--nav-height));
}

.home-half {
    display: flex;
    flex: 1;
    height: 100%;
}

.home-left {
    flex-direction: column;
    justify-content: space-around;
    padding: 0 10px;
}


.home-left-section {
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    text-align: center;
}

.home-icons {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.home-icon {
    padding-left: 50px;
    padding-right: 50px;
}

.home-svg {
    width: 75px;
    height: 75px;
}

#email, #venmo, #bitcoin {
    cursor: pointer;
}

.home-right {
    justify-content: center;
}

.modal-shown {
    display: flex;
}

.modal-hide {
    display: none;
}

#modal-bg {
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.6);
}

#modal {
    background-color: #333;
    max-width: 1000px;
    border-radius: 10px;
    padding: var(--app-padding);
}

#modal span {
    font-size: 1.25rem;
}

#modal input, #modal textarea {
    border-radius: 3px;
    border: 0px;
    background-color: #444;
    font-size: 1rem;
    padding: 5px;
}

#modal input {
    height: 1.75rem;
}

#modal-header {
    padding-top: 10px;
}

#close {
    display: flex;
    justify-content: flex-end;
}

#form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#form button {
    background-color: #1e90ff;
    border-radius: 5px;
    border: 0;
    font-size: 1.5rem;
    padding: 7px 10px;
    width: -moz-fit-content;
    width: fit-content;
}

#form button:disabled {
    opacity: 0.5;
    cursor: default;
}

#form-end {
    display: flex;
    margin-top: 5px;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1200px) {
    .home {
        height: unset;
        flex-direction: column;
        gap: 20px;
    }

    .home-left {
        gap: 50px;
    }

    .home-right img {
        width: 50%;
    }
}

@media (max-width: 1040px) {
    .home-svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 570px) {
    .home {
        height: calc(100vh - var(--nav-height));
    }

    .home-left {
        gap: 0px;
    }

    .home-right {
        display: none;
    }
    
    .home-icon {
        padding-left: 20px;
        padding-right: 20px;
    }
}