/* Desktop */
@media (min-width: 800px) {
    .home {
        transition: all 1s ease;
        position: absolute;
        height: 100vh;
        width: 100%;
        left: 0;
    }

    .home h1 {
        width: 20vw;
        position: absolute;
        left: 20%;
        top: 15%;
        font-size: 1.8vw;
    }

    .home img {
        width: 20vw;
        position: absolute;
        left: 20%;
        bottom: 15%;
        border-radius: 1vw;
    }

    .infoBlock {
        position: absolute;
        top: 15%;;
        right: 20%;
        bottom: 15%;
        width: 25vw;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        z-index: 100;
        border-radius: 1vw;
    }

    .personalInfo h2 {
        font-size: 1.7vw;
        font-weight: 900;
        color: var(--blue);
        margin-bottom: 15px;
    }

    .personalInfo div {
        display: flex;
        font-size: 1.2vw;
        font-weight: 900;
        margin-bottom: 5px;
    }

    .personalInfo div i {
        margin-right: 10px;
        font-size: 1.5vw;
    }

    .infoBlock hr {
        width: 80%;
    }

    .swipeLink {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--blue);
        font-size: 1.7vw;
    }

    .swipeLink h5 {
        margin-right: 10%;
    }


    .home form {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        height: 38%;
    }

    .home form h2 {
        font-size: 1vw;
    }

    .home form input {
        width: 100%;
        height: 20%;
        outline: none;
    }

    .home form button {
        height: 20%;
        width: 100%;
        background: none;
        border: solid 3px var(--green);
        border-radius: 10px;
        border-top-right-radius: 0;
        color: var(--green);
        font-weight: 900;
        font-size: 0.8vw;
        cursor: pointer;
    }
}

/* Phone */
@media (max-width: 800px) {
    
}