body {
    background-color: rgb(19, 19, 19);
}

.contact-link{
    color: rgb(134, 199, 255) !important;
}

.cover-container {
    height: 300px;
}

.title-container {
    justify-content:center;
    align-items: center;
    text-align: center;
    display:flex;
    width: 100%;
}

.title {
    margin-top: 150px;
    font-size: clamp(10px, 10vh, 100px);
    font-weight: 400;
    color: white;
    animation: appear 2s;
}

main {
    height: 50vh;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;    
}

.icon {
    position: relative;
    width: 80px;
    height: 80px;
    animation: expand-from-center 1.5s;
    margin: 20px;
    border-radius: 50%;
    transition:all 1s;
    cursor: pointer;
}

.icon:hover {
    background-color: #e60073;
    box-shadow:  0 0 20px #e60073 ;
}

.icon:hover:nth-child(2) {
    background-color: #01882a;
    box-shadow:  0 0 20px #dafc46;
}

.icon:hover:nth-child(3) {
    background-color: #3a1af1;
    box-shadow: 0 0 20px #3a1af1 ;
}

.icon i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.7rem;
}

svg circle {
    stroke-dasharray: 150;
    transition: all .8s ease-in-out;
}

.icon:hover circle {
    stroke-dasharray: 220;
}

@keyframes expand-from-center {
    0%{
        margin: -40px;
    }
    40%{
        margin: -10px;
    }
    100%{
        margin: 20px;
    }
}

@keyframes appear{
    0% {
        opacity: -1;
        font-weight: 100;
    }
    100%{
        opacity: 1;
        font-weight: 400;
    }
}
