.mobile,
.desktop{
    position: relative !important;
}

main{
    margin: 0 10% 0 10%;
    height: fit-content;
    padding-bottom: 50px;
}

main a{
    text-decoration: none;
    color: #FDDC94;
    font-size: 1.2em;
}

main a:hover{
    text-decoration: underline;
}

main h1{
    color: #FDDC94;
    margin-bottom: 20px;
}

.experience-element{
    display: flex;
    color: #FDDC94;
    margin-bottom: 40px;
}

.date{
    width: 140px;
}

.info{
    margin-left: 25px;
}

.job-title{
    font-size: 1.2em;
    font-weight: 800;
    margin-bottom: 10px;
}

.description{
    margin-bottom: 20px;
}

.tags{
    display: flex;
    flex-wrap: wrap;
}

.tag{
    background: hsl(314, 27%, 39%, 0.5);
    backdrop-filter: blur(15px);
    padding: 10px 15px 10px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
}

@media (max-width: 715px){
    .experience-element{
        flex-direction: column;
    }

    .date{
        width: fit-content;
        margin-bottom: 10px;
    }

    .info{
        margin-left: 0;
    }
}