@import url('https://fonts.googleapis.com/css2?family=League+Spartan&display=swap');

:root {
    --primary: #8257e5;
    --body-bg-color: #FAF7FD;
    --body-bg-dark: #121212;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: var(--body-bg-color);
}

body.dark{
    background-color: var(--body-bg-dark);
}

#social{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#social .container{
    width: 600px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#social .container .top-area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#social .container .top-area img{
    border-radius: 100%;
    width: 200px;
    height: 200px;
    padding: 5px;
    border: 2px solid var(--primary);
    margin-bottom: 30px;
    object-fit: cover;
}

#social .container .top-area video{
    border-radius: 100%;
    width: 200px;
    height: 200px;
    padding: 5px;
    border: 2px solid var(--primary);
    margin-bottom: 30px;
    object-fit: cover;
}

#social .container .top-area .title{
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
}

#social .container .buttom-area{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

#social .container .buttom-area button{
    height: 40px;
    width: 250px;
    margin-bottom: 5px;
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 4px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease;
}

#social .container .buttom-area button:hover{
    background-color: var(--primary);
    color: var(--body-bg-color);
}

#social .container .social-area{
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: space-between;
}
