@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');

body {
    font-family: 'Outfit', sans-serif;

    margin: 0;
    padding: 0;

    background-color: black;
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.container {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 522px;
}

.container-text {
    color: white;

    font-size: 16px;
    font-weight: 400;

    margin-top: 15px;
    margin-bottom: 15px;
}

.container-text span {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: never;
}

.linkedin {
    display: block;
    width: 100px;
    height: 30px;

    border-radius: 5px;
    background: #2867B2;

    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin:hover {
    background: #317dda;
}