* {
    margin: 0;
    padding: 0;
}

div {
    height: 100%;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: block;
    margin-top: 15rem;
    margin-left: auto;
    margin-right: auto;
}

.input {
    display: flex;
    float: left;
    margin-left: 20px;
    /* margin-right: auto; */
    width: 60%;
    border: none;
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
    outline: none;
    vertical-align: middle;
    height: 100%;
}

.button {
    position: relative;
    float: right;
    height: 32px;
    outline: none;
    border: none;
    background-color: #4885ed;
    color: white;
    font-size: 16px;
    margin-top: 6px;
    border-radius: 5px;
    right: 20px;
    padding: 6px;
}

.border {
    margin-top: 20px;
    height: 44px;
    width: 60%;
    border-radius: 24px;
    border: 1px solid #dfe1e59f;
}

.notification {
    position: fixed;
    top: 30px;
    width: 300px;
    height: 100px;
    left: 50%;
    border-radius: 20px;
    border: 1px solid #dfe1e5b2;
    transform: translate(-50%, -20px);
    transition: .5s;
    opacity: 0;
}

.notificationText {
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    font-size: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cursor {
    position: fixed;
    top: 50%;
    left: 40%;
    z-index: 100;
}

@media only screen and (max-width: 600px) {
    .border {
        width: 100%;
    }
  }

  @media only screen and (min-width: 1500px) {
    .border {
        width: 50%;
    }
  }