/*
  Roboto
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400&display=swap");

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: uppercase;
}

body{
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  letter-spacing: -0.1vw;
  background-color: var(--background-color);
  color: white;
}

:root {
  --text-color: #f0f0f0;
  --gray-color: #696969;
  --background-color: hsl(203, 92%, 75%);
}

a {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

a:hover {
  color: var(--gray-color);
}

.container {
  display: flex;
  align-items: flex-start; 
}

.text-blocks {
  display: flex;
  flex-direction: column; 
  column-gap: 10px;
}

.name {
  line-height: 100%;
  display: flex;
  margin-top: 2vw;
}

.block {
  margin-top: 6vw;
}

.block-title {
  color: var(--gray-color);
}

.photo {
  border-radius: 100px;
  border: 3px solid transparent;
  box-shadow: 0 4px 15px 0px rgba(0, 0, 0, 0.52);
  object-fit: cover;
  height: auto;
  display: flex;
}

.change-word {
  position: relative;
  display: inline;
}

.change-word:hover {
color: transparent; 
}

.change-word::after {
content: "yanakiselevaqa@gmail.com";
position: absolute; 
left: 0;
top: 0;    
color: var(--gray-color); 
font-size: 3.5vw;
opacity: 0;
pointer-events: none;
}

.change-word:hover::after {
opacity: 1;
}

/* Screen less than 900px*/
@media screen and (max-width: 1200px) {
.container {
  gap: 20px; 
  margin: 1vw;
}

.name {
  font-size: 12vw;
}

.block-title {
  line-height: 5.208vw;
  font-size: 3.8vw;
  margin-bottom: 2vw;
}

.entry {
  line-height: 7.814vw;
  font-size: 6.667vw;
  margin-bottom: 0vw;
}

.photo {
  max-width: 45%;
  margin-top: 5vw;
}
}

/* Screen more than 900 px but less than 1440 px*/
@media screen and (min-width: 1200px) {

.container {
  column-gap: 4vw;
  margin: 1vw;
}

.name {
  font-size: 9vw;
}    

.block-title {
  line-height: 3.3vw;
  font-size: 2.8vw;
  margin-bottom: 1.5vw;
}

.entry {
  line-height: 5.1vw;
  font-size: 5vw;
  margin-bottom: 0.5vw;
}

.photo {
  margin-top: 2.7vw;
  max-width: 35%;
}
}

/* Screen more than 1440 px */
@media screen and (min-width: 1440px) {
.container {
  column-gap: 4vw; 
  margin: 1vw;
}

.name {
  font-size: 12vw;
  margin-right: 4.5vw;
}

.photo{
  max-width: 40%;
  margin-top: 2.7vw;
}

.block-title {
  line-height: 3.3vw;
  font-size: 2.8vw;
  margin-bottom: 1.5vw;
}

.entry {
  line-height: 5.1vw;
  font-size: 5vw;
  margin-bottom: 1vw;
}
}