* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(2, 20, 218, 0.92) 93%, rgba(0, 212, 255, 1) 100%);
}

h1 {
    text-align: center;
    color: white;
    font-size: 50px;
    margin-top: 50px;
    text-transform: uppercase;
}

main {
    display: flex;
    padding: 0;
    justify-content: space-around;
    gap: 50px;
    flex-wrap: wrap-reverse;
}

img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
}

div {
    display: flex;
    flex-direction: column;
    gap: 30px;

    h3 {
        padding: 100px;
        color: #fff;
        font-size: 25px;
    }

    a {
        color: dodgerblue;
        background-color: #fff;
        text-decoration: none;
        padding: 10px;
        font-weight: 700;
        border-radius: 12px;
        text-align: center;
    }
}
