@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --cor01: #F0D4B5;
    --cor02: #C583A2;
    --cor03: #262433;
    --cor04: #695FA0;
    --cor05: #5D5975;
    --cor06: #43414B;
}

* {
    font-family: 'Open Sans', sans-serif;
    padding: 0px;
    margin: 0px;
    
}

body {
    background-image: linear-gradient(to top , var(--cor01), var(--cor02));
    background-attachment: fixed;
}


header {
    display: flex;
    background-color: #43414B;
    padding: 20px;
    justify-content: space-between;
    border-radius: 1px;
    color: #e4c8d5;
}

header > h1 {
    font-size: 20px;
    font-weight: 600;
}

header > h1 > a:hover {
    color: white;
    transition-duration: 0.5s;
    cursor: pointer;
}

header > h1 > small > a > img {
    margin-bottom: -2px;
}

a {
    text-decoration: none;
    color: #e4c8d5;
    
}

header > nav > a:hover {
    border-bottom: 2px solid ;
}

main {
    margin-top: 80px;
    justify-content: center;
    }

main {
    padding: 50px;
    color: white;
    display: flex;

}

main > .frame {
    background-color: #43414B;
    width: 300px;
    height: 100px;
    border-radius: 10px 10px;
    padding: 15px;
    margin: 10px;
}

main > .frame > h3 > a:hover {
    border-bottom: 2px solid;
    transition-duration: 5s;
}

@media only screen and (max-width: 600px) {
    main > img {
        width: 90%;
    }
}

