body { 
    margin: 0;
}

.hire-btn {
    background-color: #8bc34a;
    border-width: 1.5px;
    color: white;
    font-weight: 600;

    width: 200px;
    padding: 10px;
    border-radius: 15px;
}
.hire-btn:hover {
    background-color: #8bc34a;
    color: white;
}


.falling-contact {
    position: absolute; 
    top: 0; 
    left: 30px;

    z-index: 999;
}

.falling-contact-icon > svg {
    width: 35px;
    height: 35px;
    margin-top: 5px;

    transition: 0.3s;

    fill: rgb(0 0 0 / 30%);
}
.falling-contact-icon > svg:hover {
    fill: rgb(0 0 0 / 50%);
}

.falling-contact > .falling-contact-line {
    width: 1px;
    height: 20vh;
    background-color: rgb(0 0 0 / 30%);

    margin-left: 17.5px;
}

canvas {
    display: block;
    position: absolute;

    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    
    pointer-events: none;

    z-index: 1;
}
.container {
    z-index: 2;
}

.section_1 {
    background-color: #f5efe6;
}
.section_2 {
    background: linear-gradient(162deg, rgba(0,42,92,1) 35%, rgba(0,99,176,1) 100%);
    font-family: monospace;
}

.main > section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main > section > .container {
    margin: 100px;
}
