*, body, html{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body{
    width: 100vw;
    height: 100vh;    
}

.bg{
    width: 100%;
    height: 100%;
    background-image: linear-gradient( 109.6deg,  rgba(45,116,213,1) 11.2%, rgba(121,137,212,1) 91.2% );
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    /* filter: blur(2px); */
}

main{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -55%);
}
.title{
    color: white;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 70px;



}

.intro{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 100;
    max-width: 800px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px 0px 20px;

}

.resume{
    display: block;
    border: solid 2px white;
    outline: none;
    background: transparent;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;

}
.resume:hover{
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
}

.links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

@media screen and (max-width: 450px) {
    .title{
        font-size: 60px;
    }
}