@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

header {
    background-color: #4d22b2;
    height: 15vh;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    margin-top: -2vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

article {
    background-color: white;
    box-shadow: 0 0 12px 2px rgba(0,0,0,0.2);
    width: 400px;
    height: auto;
    border-radius: 20px;
    padding: 4vh;
    text-align: center;
}

article h1 {
    font-weight: 400;
}

article h2 {
    font-size: 1.2rem;
    color: grey;
    font-weight: 400;
}

article figure {
    margin-top: -11vh;;
}

article img {
    margin-top: -10vh;
    display: flex;
    border-radius: 50%;
    width: 40%;
    box-shadow: 0 0 12px 2px rgba(0,0,0,0.2);
    margin: 0 auto;
}

.social-column {
    padding-top: 1.5vh;
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vh;
    padding: 1vh;
}

article i {
    font-size: 2rem;
    padding-bottom: 1vh;
}

article a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

article a:hover {
    color: #4d22b2;
    filter: drop-shadow(4px 6px 9px rgba(0,0,0,0.7));
    
}

button {
    background: #4d22b2;
    box-sizing: border-box;
    text-decoration: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    border: 0;
    width: 100%;
    border-bottom: 3px solid rgba(0,0,0,0.2);
    outline: none;
    margin-bottom: 10px;
    align-items: center;
    gap: 2vh;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

button:hover {
    box-shadow: 0px 8px 12px 4px rgba(0,0,0,0.2);
    background-color: #4d22b2e8;
    transition: 0.5s;
    color: #a3badd;
}

button i {
    font-size: 1.3rem;
    padding-bottom: 0;
}

.divider {
    height: 2px;
    background-image: linear-gradient(to right, #ccc0, #4d22b2, #ccc0) !important;
    display: flex !important;
    width: 100% !important;
    margin: 0 auto !important;
    height: 1.5px;
    border: none;
}

@media screen and (max-width: 400px) {
    article {
        width: 270px !important;
    }
}