@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --grey: #C6C6C6;
    --light-grey: #EDEDED;
    --black: #000000;
    --white: #ffffff;
    --red: #8B0000;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--light-grey);
    color: var(--black);
    font-family: 'Source Sans', sans-serif;
}

a {
    padding: 0 2px;
    color: var(--red);
}

a:hover, a:focus {
    border-radius: 7px;
    text-decoration: none;
    background-color: var(--red);
    color: var(--white);
}

h2 {
    margin: 0;
    font-size: 0.8125rem;
}

p {
    margin: 0;
    font-size: 0.75rem;
}

img {
    width: 100%;
}

header {
    border-bottom: 2px solid var(--grey);
    background-color: white;
}

section {
    margin-bottom: 30px;
}

.ImageExtend {
    margin-bottom: -5px;
}

.ImageLogo {
    width: 127px;
}

.ImageRound {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    overflow: hidden;
}

header .Container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Profile {
    display: flex;
    align-items: center;
    gap: 7px;
}

header .Container {
    padding: 0 10px;
}

.Profile, .Actions, .Info {
    padding: 10px;
    background-color: var(--white);
}

.Actions {
    display: flex;
    gap: 16px;
}

.ImageIcon {
    width: 24px;
}

.Info {
    padding-top: 0;
}

footer {
    padding-bottom: 40px;
    text-align: center;
}

header .Container, main .Container {
    margin: 0 auto;
    max-width: 480px;
}

@media (min-width: 480px) {
    .ImageRound {
        width: 48px;
        height: 48px;
    }

    .ImageIcon {
        width: 32px;
    }
    
    h2 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }
}

.Heart:hover, .Heart:focus {
    opacity: 0.2;
}
