@font-face {
    font-family: Roboto;
    src: url('fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf');
}

@font-face {
    font-family: Lato;
    src: url('fonts/Lato/Lato-Light.ttf');
}

@font-face {
    font-family: Spectral;
    src: url('fonts/Spectral/Spectral-LightItalic.ttf');
}

@font-face {
    font-family: Quicksand;
    src: url('fonts/Quicksand/Quicksand-VariableFont_wght.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('fonts/Nunito/Nunito-VariableFont_wght.ttf');
}

@font-face {
    font-family: PlayfairDisplay;
    src: url('fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf');
}


body {
    background-color: #FEECD9;
    padding: 40px;
    font-family: Nunito, Quicksand, Roboto, sans-serif;
    font-size: medium;
    color: rgba(0, 0, 0, 0.6);
}


main {
    background-color: #F9F6EF;
    padding: 0 32px 32px 32px;
    max-width: 800px;
    margin: 0 auto;
    
    border-radius: 25px;
}

footer {
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}



ul {
    margin-bottom: 40px;
}

a {
    color: #D05F9D;
    text-decoration: none;
}

a:hover {
    color: #ea1c8b;
}


footer a {
    font-size: small;
}

.logo {
    max-width: 460px;
    margin: 0 auto;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.svg-icon {
    height: 20px;
    width: 20px;
    fill: #D05F9D;
}

.svg-icon:hover {
    fill: #ea1c8b;
}

.notification {
    font-family: PlayfairDisplay;
    font-weight: 400;
    font-size: large;
    padding: 18px 9px;
    background-color: #F8C6CE;
    color: #7E273C;
    text-align: center;
    border-radius: 0 12px 0 12px;
    margin-bottom: 40px;
    margin-top: 0;
    
}

.contact {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}

h2 {

}


h3 {
    margin-top: 40px;
    font-weight: 600;
    color: #F3AC94;
    text-transform: uppercase;
}

h4 {
    margin-bottom: 8px;
    font-weight: 600;
}

hr {
    border: 1px solid #FEECD9;
    margin-top: 40px;
    margin-bottom: 30px;
}

.introduction {
    display: flex;
    flex-direction: ;
    justify-content: space-between;
    gap: 20px;
}

.photo-r {
    width: 200px;
    height: auto;
    border-radius: 8px;
}

.lineart1 {
    position: relative;
    width: 200px;
    height: auto;
    z-index: 10;
}

.logo .mobile-view {
    display: none;
}

.logo .desktop-view {
    display: block;
}

.news-info {
    padding: 6px 16px;
    border: 2px solid #E2E1AB;
    border-radius: 0 12px 0 12px;
    width: fit-content;
	background-color: rgba(226, 225, 171, 0.6);
}

@media screen and (max-width: 992px) {
    body {
        padding: 30px;
    }
    
    .introduction {
        flex-direction:column-reverse;
    }
    
    .photo-r {
        width: 180px;
    }
    .contact {
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    body {
        padding: 6px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .logo .mobile-view {
        display: block;
    }
    
    .logo .desktop-view {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    body {
        padding: 2px 1px;
        margin: 8px 4px;
    }
}