@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;

}

body {
    background-color: #f3f5f9;
}

.wrapper {
    display: flex;
    position: relative;
}

.wrapper .sidebar {
    width: 200px;
    height: 100%;
    background: #0e1792;
    padding: 30px 0px;
    position: fixed;
}

.wrapper .sidebar h2 {
    color: #fff;
    font-family: 'Noto Serif', serif;
    text-decoration: none;
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.wrapper .sidebar ul li {
    padding: 15px;
    border-bottom: 1px solid #bdb8d7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Tangerine';
    text-decoration: none;
    font-size: 40px;
}

.wrapper .sidebar ul li a {
    color: rgb(219, 216, 216);
    display: block;
}

.wrapper .sidebar ul li a .fas {
    width: 25px;
}

.wrapper .sidebar ul li:hover {
    background-color: #009dff;
}

.wrapper .sidebar ul li:hover a {
    color: #fff;
}

.wrapper .sidebar .social_media {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.wrapper .sidebar .social_media a {
    display: block;
    width: 40px;
    background: #2931a1;
    height: 40px;
    line-height: 45px;
    text-align: center;
    margin: 0 5px;
    color: #AFE0FF;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.language {
    margin-top: px;
}

.language li {
    font-size: 20px;
    padding: 10px 15px;
    text-align: left;
    color: #dbd8d8;
}

.language a {
    display: block;
    padding: 10px 15px;
    color: #dbd8d8;
}

.language a:hover {
    color: #ff4136;
}
a.rhome  {
    font-size: 39px;
    font-family: 'Caveat', cursive;
} 

  a.rdonat {
    font-size: 39px;
    font-family: 'Caveat', cursive;
}

a.rgallery {
    font-size: 39px;
    font-family: 'Caveat', cursive;
}

a.rcontact {
    font-size: 37px;
    font-family: 'Caveat', cursive;
}
.wrapper .main_content {
    width: 100%;
    margin-left: 200px;
}

.wrapper .main_content .header {
    padding: 20px;
    background: #fff;
    color: #717171;
    border-bottom: 1px solid #e0e4e8;
    font-size: 40px;
}

.wrapper .main_content .info {
    margin: 20px;
    color: #000;
    line-height: 25px;
    font-family: 'Noto Serif', serif;
    text-decoration: none;
    font-size: 10px;
    line-height: 1.25;
    background-color: rgba(212, 255, 255, 0.233);
}

.wrapper .main_content .img-gallery div {
    margin-bottom: 20px;
}

@media (max-height: 500px) {
    .social_media {
        display: none !important;
    }
}

.img-gallery {
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.img-gallery img {
    width: 100%;
    cursor: pointer;
}

.img-gallery img:hover {
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}

.full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img {
    width: 90%;
    max-width: 500px;
}

.full-img span {
    position: absolute;
    top: 5%;
    right: 5%;
    font: size 30px;
    color: #fff;
    cursor: pointer;
}