
body {
    background-color: black;
    color:antiquewhite;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button {
    text-decoration: none;
    background-color: blue;
    color:white;
    border-radius: 6px;
    transition: opacity 0.5s, background-color 0.4s, color 0.5s;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    padding: 1%;
    display: block;
}

button:hover {

    color: black;
    background-color: blue;
    box-shadow: 0 0 8px antiquewhite;
}
a {
    color: white;
    text-decoration: none;
    display: inline-block;
}

.social-media-buttons {
    display: flex;
    flex-direction: column;
}

.social-media-buttons div{
    display: flex;
    flex-direction: column;
    position: relative;
}

.social-media-buttons div::after {

    content: "";
    height: 1px;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, transparent 0%,  rgba(199, 95, 113, 0.9) 30%,  rgba(199, 95, 113, 0.9) 70%, transparent 100%);


}


.link:hover {

    color: black;
    background-color: rgba(173, 159, 159, 0.8);
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(173, 159, 159, 0.9);
    transition: all 0.2s ease-in-out;

}

.link {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    padding: 5px;
}


.rightSide {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.socials {

    display: flex;
    flex-direction: column;
}